Skip to content

Commit

Permalink
- v0.0.24
Browse files Browse the repository at this point in the history
  • Loading branch information
vonnieda committed Feb 16, 2023
1 parent 6e5af68 commit 52321c2
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,14 @@ jobs:
path: |
deploy/*
- name: Create Release
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1
with:
artifacts: "deploy/*"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true

linux_x86_64:
strategy:
matrix:
Expand Down Expand Up @@ -173,17 +181,10 @@ jobs:
path: |
deploy/*
create_release:
needs: [macos_x86_64, macos_arm64, windows_x86_64, linux_arm64, linux_x86_64]
runs-on: ubuntu-latest
steps:
- name: Create Release
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1
with:
artifacts: "deploy/*"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true


0 comments on commit 52321c2

Please sign in to comment.