Skip to content

Build 5502e478c4f9227e6da2f785b436e9c599d06fdf #282

Build 5502e478c4f9227e6da2f785b436e9c599d06fdf

Build 5502e478c4f9227e6da2f785b436e9c599d06fdf #282

Workflow file for this run

name: Clean archive
on:
push:
branches: [ master ]
workflow_dispatch:
concurrency:
group: "clean"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run script
run: |
python3 .github/clean.py
- name: Push archive
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add .
git commit --amend -m "Build $GITHUB_SHA" || exit 0 # do not error if nothing to commit
git push --force