Skip to content

Commit

Permalink
Update create_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jarathomas authored May 31, 2024
1 parent e470d45 commit d6b436e
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,17 @@ jobs:
with:
name: pyopenva-1.2-win64.msi
path: ./dist/*.msi
- name: Upload MacOS dmg
- name: Upload MacOS latest dmg
uses: actions/upload-artifact@v4
if: runner.os == 'macOS'
if: matrix.os == 'macos-latest'
with:
name: pyopenva-1.2-macosx-latest.dmg
path: ./build/*.dmg
- name: Upload MacOS 13 dmg
uses: actions/upload-artifact@v4
if: matrix.os == 'macos-13'
with:
name: pyopenVA.dmg
name: pyopenva-1.2-macosx-13.dmg
path: ./build/*.dmg
create_release:
needs: [build]
Expand All @@ -76,4 +82,4 @@ jobs:
- name: Create release in GitHub and uploads attachments
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create v1.2 ./dist/pyopenva-1.2-win64.msi ./dist/pyopenVA.dmg
run: gh release create v1.2 ./dist/pyopenva-1.2-win64.msi ./dist/pyopenva-1.2-macosx-latest.dmg ./dist/pyopenva-1.2-macosx-13.dmg

0 comments on commit d6b436e

Please sign in to comment.