-
Notifications
You must be signed in to change notification settings - Fork 16
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
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -345,8 +345,8 @@ jobs: | |
artifacts/mas-cli-x86_64-linux.tar.gz | ||
draft: true | ||
|
||
nightly: | ||
name: Update the nightly release | ||
unstable: | ||
name: Update the unstable release | ||
runs-on: ubuntu-24.04 | ||
needs: | ||
- build-binaries | ||
|
@@ -363,7 +363,7 @@ jobs: | |
name: binaries | ||
path: artifacts | ||
|
||
- name: Update nightly git tag | ||
- name: Update unstable git tag | ||
uses: actions/[email protected] | ||
with: | ||
script: | | ||
|
@@ -374,18 +374,18 @@ jobs: | |
owner, | ||
repo, | ||
force: true | ||
ref: 'refs/tags/nightly', | ||
ref: 'refs/tags/unstable', | ||
sha, | ||
}); | ||
console.log("Updated tag ref:", tag.data.url); | ||
- name: Update nightly release | ||
- name: Update unstable release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: 'Nightly build' | ||
tag_name: nightly | ||
name: 'Unstable build' | ||
tag_name: unstable | ||
body: | | ||
This is an automatically updated nightly release containing the latest builds from the main branch. | ||
This is an automatically updated unstable release containing the latest builds from the main branch. | ||
**⚠️ Warning: These are development builds and may be unstable.** | ||
|