Skip to content

Commit

Permalink
Update setup-node and upload-artifact to v4. (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kichura authored Dec 20, 2023
1 parent bc2359d commit 0db901e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
- name: Setup pnpm
Expand All @@ -35,26 +35,26 @@ jobs:
- name: Compile software
run: pnpm tauri build --ci
- name: Upload the Linux packages (AppImage)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.platform == 'ubuntu-22.04'
with:
name: linux-packages
path: src-tauri/target/release/bundle/appimage/*.AppImage
- name: Upload the Linux packages (ELF)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.platform == 'ubuntu-22.04'
with:
name: linux-packages-raw
# TODO: a better way to find just the binary
path: src-tauri/target/release/fabulously-optimized-installer
- name: Upload the macOS packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.platform == 'macos-13'
with:
name: macos-packages
path: src-tauri/target/release/bundle/dmg/*.dmg
- name: Upload the Windows packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.platform == 'windows-2022'
with:
name: windows-packages
Expand Down

0 comments on commit 0db901e

Please sign in to comment.