We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6285c43 commit a5a4a0cCopy full SHA for a5a4a0c
1 file changed
.github/workflows/release.yml
@@ -16,12 +16,16 @@ jobs:
16
include:
17
- os: ubuntu-latest
18
artifact: initializr-plusplus-linux-x86_64
19
+ binary: plusplus
20
- os: ubuntu-24.04-arm
21
artifact: initializr-plusplus-linux-aarch_64
22
23
- os: macos-latest
24
artifact: initializr-plusplus-osx-aarch_64
25
26
- os: windows-latest
27
artifact: initializr-plusplus-windows-x86_64.exe
28
+ binary: plusplus.exe
29
30
runs-on: ${{ matrix.os }}
31
@@ -50,6 +54,10 @@ jobs:
50
54
run: ./mvnw -Pnative clean native:compile -DskipTests
51
55
shell: bash
52
56
57
+ - name: Rename binary
58
+ run: mv ./target/${{ matrix.binary }} ./target/${{ matrix.artifact }}
59
+ shell: bash
60
+
53
61
- name: Upload to release
62
uses: softprops/action-gh-release@v2
63
with:
0 commit comments