Skip to content

Commit

Permalink
Update electron-app action to update upload-artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Sep 11, 2024
1 parent 328bd4c commit e0c7159
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/electron-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
run: echo "::set-output name=version::$(node -p -e "require('./package.json').version")"

- name: Upload .exe artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: windows-build
path: release/${{ steps.get_version.outputs.version }}/*.exe

- name: Upload .AppImage artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: linux-build
path: release/${{ steps.get_version.outputs.version }}/*.AppImage
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
run: echo "::set-output name=version::$(node -p -e "require('./package.json').version")"

- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: macos-build
path: release/${{ steps.get_version.outputs.version }}/*.dmg
Expand Down

0 comments on commit e0c7159

Please sign in to comment.