Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
agustingroh authored Mar 3, 2025
1 parent 0f6c488 commit 5d2cedb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
steps:

- name: Download artifact W unsigned
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifact_w_unsigned

Expand All @@ -76,7 +76,7 @@ jobs:
file_path: ${GITHUB_WORKSPACE}/${{ env.ARTIFACT_WIN_PATH }}
output_path: ${GITHUB_WORKSPACE}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifact_w
path: |
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
npm exec -- electron-builder build --mac --publish never
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifact_m
path: |
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
run: |
npm exec -- electron-builder build --linux --publish never
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifact_l
path: |
Expand All @@ -162,17 +162,17 @@ jobs:

steps:
- name: Download artifact W
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifact_w

- name: Download artifact M
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifact_m

- name: Download artifact L
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifact_l

Expand Down

0 comments on commit 5d2cedb

Please sign in to comment.