Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
version: ${{ needs.prepare-version.outputs.version }}

# ------------------------------------
# 3) Upload Install CLI Script (we only need to do this once)
# 3) Upload Install CLI Scripts (we only need to do this once)
# ------------------------------------
install-script:
name: Upload Install Script
name: Upload Install Scripts
runs-on: ubuntu-latest
needs: [build-cli]
steps:
Expand All @@ -58,6 +58,10 @@ jobs:
with:
name: download_cli.sh
path: download_cli.sh
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # pin@v4
with:
name: download_cli.ps1
path: download_cli.ps1

# ------------------------------------------------------------
# 4) Bundle Desktop App (macOS only) - builds goosed and Electron app
Expand Down Expand Up @@ -121,6 +125,7 @@ jobs:
*.deb
*.rpm
download_cli.sh
download_cli.ps1
allowUpdates: true
omitBody: true
omitPrereleaseDuringUpdate: true
7 changes: 6 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
version: ${{ needs.prepare-version.outputs.version }}

install-script:
name: Upload Install Script
name: Upload Install Scripts
runs-on: ubuntu-latest
needs: [build-cli]
steps:
Expand All @@ -43,6 +43,10 @@ jobs:
with:
name: download_cli.sh
path: download_cli.sh
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # pin@v4
with:
name: download_cli.ps1
path: download_cli.ps1

bundle-desktop:
needs: [prepare-version]
Expand Down Expand Up @@ -93,6 +97,7 @@ jobs:
*.deb
*.rpm
download_cli.sh
download_cli.ps1
allowUpdates: true
omitBody: true
omitPrereleaseDuringUpdate: true
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
uses: ./.github/workflows/build-cli.yml

# ------------------------------------
# 2) Upload Install CLI Script
# 2) Upload Install CLI Scripts
# ------------------------------------
install-script:
name: Upload Install Script
name: Upload Install Scripts
runs-on: ubuntu-latest
needs: [build-cli]
steps:
Expand All @@ -38,6 +38,10 @@ jobs:
with:
name: download_cli.sh
path: download_cli.sh
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # pin@v4
with:
name: download_cli.ps1
path: download_cli.ps1

# ------------------------------------------------------------
# 3) Bundle Desktop App (macOS)
Expand Down Expand Up @@ -110,6 +114,7 @@ jobs:
*.deb
*.rpm
download_cli.sh
download_cli.ps1
allowUpdates: true
omitBody: true
omitPrereleaseDuringUpdate: true
Expand All @@ -128,6 +133,7 @@ jobs:
*.deb
*.rpm
download_cli.sh
download_cli.ps1
allowUpdates: true
omitBody: true
omitPrereleaseDuringUpdate: true
Loading