Skip to content

Commit

Permalink
Offer direct download links for RCC in release page
Browse files Browse the repository at this point in the history
CMK-20341
  • Loading branch information
jherbel committed Nov 25, 2024
1 parent 8756122 commit e3edeef
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:

- run: zip -r 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
run: |
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: >
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

0 comments on commit e3edeef

Please sign in to comment.