Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzhichang committed Dec 25, 2023
1 parent 2456ebd commit b48e0a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Nightly Build

on:
schedule:
- cron: '0 0 * * * *' # This schedule runs every night at midnight UTC
- cron: '0,15,30,45 * * * * *' # This schedule runs every night at midnight UTC

jobs:
nightly:
Expand All @@ -25,6 +25,10 @@ jobs:
- name: Build source tarball
run: git archive --format=tar HEAD | gzip > archive.tgz

- name: Remove existing tag
# https://github.com/softprops/action-gh-release/issues/171
run: git push origin :refs/tags/nightly || true

- name: Create or overwrite a releae
# https://github.com/actions/upload-release-asset has been replaced by https://github.com/softprops/action-gh-release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit b48e0a1

Please sign in to comment.