Skip to content

Commit

Permalink
Bump artifact action version
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxlider committed Oct 13, 2024
1 parent 172eb38 commit 6f9c2a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:

# BUILD APP
build:
if: ( github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master' ) || startsWith(github.ref, 'refs/tags/v')
if: ( github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master' ) || startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch'
strategy:
matrix:
# runtime: [x64, x86]
# runtime: [x64, x86]
runtime: [x64]

runs-on: windows-latest # For a list of available runner types, refer to
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
Runtime: ${{ matrix.runtime }}

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.runtime }}
path: .\${{ env.ZIP_NAME}}${{ matrix.runtime }}.zip
Expand All @@ -94,7 +94,7 @@ jobs:
fetch-depth: 0 # required for tags history processing

- name: Download x64 artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build-x64
path: ./artifacts
Expand Down

0 comments on commit 6f9c2a6

Please sign in to comment.