We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 082c586 commit 48196cdCopy full SHA for 48196cd
1 file changed
.github/workflows/release.yml
@@ -14,7 +14,7 @@ jobs:
14
runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
- os: [ubuntu-latest, windows-latest]
+ os: [ubuntu-latest, windows-latest, macos-latest]
18
steps:
19
- name: Checkout
20
uses: actions/checkout@v4
@@ -45,7 +45,9 @@ jobs:
45
if: runner.os != 'Windows'
46
run: |
47
mkdir -p build/artifacts
48
- zip -r "build/artifacts/AmicoScript-${{ github.ref_name }}-${{ matrix.os }}.zip" dist/AmicoScript || true
+ # On mac the build produces an .app bundle (dist/AmicoScript.app).
49
+ # Zip any AmicoScript output (binary dir or .app bundle).
50
+ zip -r "build/artifacts/AmicoScript-${{ github.ref_name }}-${{ matrix.os }}.zip" dist/AmicoScript* || true
51
shell: bash
52
53
- name: Create GitHub Release and upload artifacts
0 commit comments