Skip to content

Commit

Permalink
chore(GHA): enable windows builds again, show package artifact content
Browse files Browse the repository at this point in the history
  • Loading branch information
ibressler authored Feb 11, 2025
1 parent 8f4a8c1 commit 781a473
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['macos-latest']
# ['windows-latest', 'ubuntu-latest']
os: ['windows-latest', 'macos-latest']
# [ 'ubuntu-latest']
outputs:
version: ${{ needs.version.outputs.version }}
steps:
Expand Down Expand Up @@ -78,11 +78,16 @@ jobs:
hdiutil create -fs HFS+ -srcfolder "$fn.app" -volname "$fn" "$fn.dmg"
rm -Rf "$fn.app" "$fn"
- name: Show what is in the upload-artifact
shell: sh
run: ls -la dist

- name: Store built packages for publishing later
uses: actions/upload-artifact@v4
with:
name: package-${{ matrix.os }}
path: dist/*.*
overwrite: true

publish:
if: false
Expand Down

0 comments on commit 781a473

Please sign in to comment.