Skip to content

Commit

Permalink
Merge pull request #145 from weaponsforge/fix/weaponsforge-140
Browse files Browse the repository at this point in the history
fix: use actions upload/download artifact v4
  • Loading branch information
weaponsforge authored Oct 3, 2024
2 parents 564871b + 991af64 commit b969ff4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ jobs:
npm run export
mv out/404/index.html out/404.html
- name: Archive Development Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dev-out
include-hidden-files: true
path: |
client/out
client/.firebaserc
Expand Down Expand Up @@ -75,7 +76,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dev-out
- name: Deploy to Firebase
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ jobs:
touch out/.nojekyll
- name: Archive Development Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: main-out
include-hidden-files: true
path: client/out
retention-days: 3

Expand Down Expand Up @@ -83,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: main-out

Expand Down

0 comments on commit b969ff4

Please sign in to comment.