diff options
author | 2020-09-13 21:57:22 -0400 | |
---|---|---|
committer | 2020-09-13 21:57:22 -0400 | |
commit | b80f5edb93492050638887ca974e2298f30df283 (patch) | |
tree | c31d39543fb18fb2182707828c06623ffe716eed /.github/workflows/cleanup.yml | |
parent | 04a34b21f5eb5b062e1b00632b2d92b934111b83 (diff) | |
download | textadept-b80f5edb93492050638887ca974e2298f30df283.tar.gz textadept-b80f5edb93492050638887ca974e2298f30df283.zip |
Added initial GitHub workflow for [nightly] builds.
Diffstat (limited to '.github/workflows/cleanup.yml')
-rw-r--r-- | .github/workflows/cleanup.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml new file mode 100644 index 00000000..5f71decf --- /dev/null +++ b/.github/workflows/cleanup.yml @@ -0,0 +1,13 @@ +name: cleanup +on: + schedule: + - cron: '15 4 * * *' + +jobs: + cleanup: + runs-on: ubuntu-latest + steps: + - name: Remove build artifacts + uses: c-hive/gha-remove-artifacts@v1 + with: + age: '1 minute' |