Skip to content

Commit

Permalink
updating artifact actions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
catdad committed Feb 8, 2024
1 parent f2567bd commit 9ac19cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- run: npm run package
- run: npm run test:unpacked
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-artifacts
path: dist/*.exe
Expand All @@ -36,7 +36,7 @@ jobs:
- run: npm test
- run: npm run package
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macos-artifacts
path: dist/*.dmg
Expand All @@ -53,7 +53,7 @@ jobs:
- run: npm run package
- run: xvfb-run --auto-servernum npm run test:unpacked
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-artifacts
path: dist/*.AppImage
Expand All @@ -62,7 +62,7 @@ jobs:
needs: [ windows, macos, linux ]
steps:
- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ./
- name: Flatten artifacts
Expand Down

0 comments on commit 9ac19cc

Please sign in to comment.