Skip to content

Commit

Permalink
Add: GitHub Action
Browse files Browse the repository at this point in the history
Signed-off-by: NaveenKumar Namachivayam <[email protected]>
  • Loading branch information
QAInsights committed Nov 19, 2023
1 parent 6eeaa09 commit e74156b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@ jobs:

- name: Release Darwin
uses: softprops/action-gh-release@v1
if:
startsWith(github.ref, 'refs/tags/')
matrix.os == 'self-hosted' && matrix.arch == 'ARM64'
if: startsWith(github.ref, 'refs/tags/') && matrix.os == 'self-hosted' && matrix.arch == 'ARM64'
with:
token: ${{ secrets.HAMSTER_APP_RELEASE_SECRET }}
files: |
Expand All @@ -82,8 +80,8 @@ jobs:
- name: Release Intel
uses: softprops/action-gh-release@v1
if:
startsWith(github.ref, 'refs/tags/')
matrix.os == 'macos' && matrix.arch == 'X64'
startsWith(github.ref, 'refs/tags/') && matrix.os == 'macos' && matrix.arch == 'X64'

with:
token: ${{ secrets.HAMSTER_APP_RELEASE_SECRET }}
files: |
Expand Down

0 comments on commit e74156b

Please sign in to comment.