Skip to content

Commit

Permalink
Updating to v4 artifact actions due to v3 being deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
NickGeek committed Feb 2, 2025
1 parent 68de784 commit d1819d0
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 @@ -33,7 +33,7 @@ jobs:
bun run build
tar cfJ micropad.tar.xz build/*
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: micropad
path: 'app/micropad.tar.xz'
Expand All @@ -48,7 +48,7 @@ jobs:
with:
node-version: '18'
- uses: oven-sh/setup-bun@v1
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: micropad
- name: Install node dependencies
Expand All @@ -74,7 +74,7 @@ jobs:
needs: [build, test]
if: github.ref == 'refs/heads/master' && github.repository == 'micropad/Micropad-Core'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: micropad
- run: |
Expand All @@ -99,7 +99,7 @@ jobs:
needs: [build, test]
if: github.ref == 'refs/heads/next-dev' && github.repository == 'micropad/Micropad-Core'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: micropad
- run: |
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
id: micropad-version
working-directory: app
run: echo "version=v$(npm pkg get version | sed 's/"//g')" >> $GITHUB_OUTPUT
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: micropad
- uses: dev-drprasad/[email protected]
Expand Down

0 comments on commit d1819d0

Please sign in to comment.