Skip to content

Commit

Permalink
Merge pull request #752 from skaut/artifact-v4
Browse files Browse the repository at this point in the history
Using v4 of CI artifacts
  • Loading branch information
marekdedic authored Dec 15, 2023
2 parents 209bfed + af7bb57 commit d7ab72e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
npm run build
- name: "Upload artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "build-artifact"
path: dist
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
npm ci
- name: "Download build artifact"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: "build-artifact"
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
npm run build
- name: "Upload artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "build-artifact"
path: dist
Expand All @@ -66,7 +66,7 @@ jobs:
needs: build
steps:
- name: "Download artifact"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: "build-artifact"
path: ${{ github.event.repository.name }}
Expand Down

0 comments on commit d7ab72e

Please sign in to comment.