forked from canonical/firefox-snap
-
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.
- Loading branch information
Showing
4 changed files
with
558 additions
and
118 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
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 |
---|---|---|
|
@@ -16,8 +16,8 @@ name: New version check | |
|
||
on: | ||
schedule: | ||
# run every hour (at minute 35) | ||
- cron: '35 * * * *' | ||
# run every hour (at minute 58) | ||
- cron: '58 * * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -44,7 +44,7 @@ jobs: | |
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git commit -m "Bump version to the latest release candidate (${{ env.new_version }})." | ||
git push | ||
git push stable | ||
else | ||
echo "New major version (${{ env.new_version }}), please merge the beta branch into the stable one." | ||
fi | ||
|
@@ -71,7 +71,7 @@ jobs: | |
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git commit -m "Bump version to the latest ESR release (${{ env.new_version }})." | ||
git push | ||
git push esr | ||
else | ||
echo "New major version (${{ env.new_version }}), please proceed to a manual update." | ||
fi | ||
|
@@ -97,7 +97,7 @@ jobs: | |
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git commit -m "Bump version to the latest beta (${{ env.new_version }})." | ||
git push | ||
git push beta | ||
check-new-nightly: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
|
Oops, something went wrong.