Skip to content

Commit

Permalink
actions/upload-artifact to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
Warzocha authored and Warzocha committed Sep 30, 2024
1 parent 6643c98 commit e0b2b47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Build Package
run: npm run build -- ${{ env.libName }}
- name: Upload Artifact
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v3.0.0
with:
name: '${{ env.artifactName }}'
path: './dist/libs/${{ matrix.package }}'
2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Build Package
run: npm run build -- ${{ env.libName }}
- name: Upload Artifact
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v3.0.0
with:
name: '${{ env.artifactName }}'
path: './dist/libs/${{ matrix.package }}'
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build Package
run: npm run build -- ${{ env.libName }}
- name: Upload Artifact
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v3.0.0
with:
name: '${{ env.artifactName }}'
path: './dist/libs/${{ matrix.package }}'
Expand Down

0 comments on commit e0b2b47

Please sign in to comment.