Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Offer direct download links for RCC in release page #653

Merged
merged 1 commit into from
Nov 27, 2024
Merged
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
17 changes: 15 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,14 @@ jobs:
name: rmk_linux64
path: artifact/rmk_linux64/

- run: zip -r executables.zip artifact
- run: zip -r all_executables.zip artifact

- name: "Prepare RCC binaries for release"
run: |
cp artifact/rcc/linux64/rcc artifact/rcc/rcc_linux64
cp artifact/rcc/linux64/rccremote artifact/rcc/rccremote_linux64
cp artifact/rcc/windows64/rcc.exe artifact/rcc/rcc_windows64.exe
cp artifact/rcc/windows64/rccremote.exe artifact/rcc/rccremote_windows64.exe

- name: "Compute release tag"
id: compute-tag
Expand All @@ -54,7 +61,13 @@ jobs:
- uses: ncipollo/release-action@v1
with:
allowUpdates: false
artifacts: "executables.zip,assets/robotmk_core-1.0.0.mkp"
artifacts: >
all_executables.zip,
assets/robotmk_core-1.0.0.mkp,
artifact/rcc/rcc_linux64,
artifact/rcc/rccremote_linux64,
artifact/rcc/rcc_windows64.exe,
artifact/rcc/rccremote_windows64.exe
replacesArtifacts: true
removeArtifacts: true
prerelease: true
Expand Down