Skip to content

Commit

Permalink
Merge pull request #49 from QAInsights/feature/windows
Browse files Browse the repository at this point in the history
feature/windows
  • Loading branch information
QAInsights authored Nov 23, 2023
2 parents 5f28403 + c21ba59 commit 80e13dd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
run: |
python .\windows\setup.py bdist_msi
mv dist dist-windows
if: matrix.os == 'windows'

- name: Convert dist-intel to DMG
run: |
Expand Down Expand Up @@ -96,6 +97,7 @@ jobs:
with:
name: Hamster-windows-x86_64
path: dist-windows/Hamster-*.msi
if: matrix.os == 'windows'

- name: GitHub Tag
uses: mathieudutour/[email protected]
Expand All @@ -105,7 +107,7 @@ jobs:

- name: Release Darwin
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main' && matrix.os == 'macos' && matrix.arch == 'ARM64'
with:
token: ${{ secrets.HAMSTER_APP_RELEASE_SECRET }}
body: 'Release for commit ${{ github.sha }}'
Expand All @@ -116,7 +118,7 @@ jobs:
- name: Release Intel
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main' && matrix.os == 'macos' && matrix.arch == 'X64'
with:
token: ${{ secrets.HAMSTER_APP_RELEASE_SECRET }}
body: 'Release for commit ${{ github.sha }}'
Expand All @@ -127,7 +129,7 @@ jobs:
- name: Release Windows
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main' && matrix.os == 'windows'
with:
token: ${{ secrets.HAMSTER_APP_RELEASE_SECRET }}
body: 'Release for commit ${{ github.sha }}'
Expand Down

0 comments on commit 80e13dd

Please sign in to comment.