s/nightly/unstable/

This commit is contained in:
Quentin Gliech
2025-01-22 15:53:10 +01:00
parent 468a597374
commit 11509f9cde

View File

@@ -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/github-script@v7.0.1
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.**