forked from gap-system/gap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable nightly builds with fixed URL
- Loading branch information
Showing
3 changed files
with
42 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow takes care of creating nightly release archives for the | ||
# GAP distribution. It works by tagging the latest master branch as "nightly" | ||
# which then triggers the regular release workflow. Doing it this way ensures | ||
# that everything is as close as possible to a regular release. | ||
name: "Nightly releases" | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Every day at 3:33 AM UTC | ||
- cron: '39 3 * * *' | ||
|
||
jobs: | ||
nightly: | ||
runs-on: ubuntu-latest | ||
steps: | ||
#- uses: dev-drprasad/delete-tag-and-release@v1.0 | ||
# with: | ||
# tag_name: nightly | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: actions/checkout@v4 | ||
- uses: rickstaa/action-create-tag@v1 | ||
id: "tag_create" | ||
with: | ||
tag: "nightly" | ||
tag_exists_error: false | ||
#force_push_tag: true | ||
message: "Nightly build" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters