Skip to content

Commit

Permalink
ci: update upload- and download-artifact actions (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli authored Feb 14, 2025
1 parent e003d3c commit c355376
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,14 @@ jobs:
find $ostag -perm +111 -type f | xargs -I{} sh -c "otool -L {}"
- name: Upload programs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.ostag.outputs.ostag }}
path: ${{ steps.ostag.outputs.ostag }}.zip

- name: Upload metadata
if: runner.os == 'Linux'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.ostag.outputs.ostag }}
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@ jobs:
find $ostag -perm +111 -type f | xargs -I{} sh -c "otool -L {}"
- name: Upload distribution archive
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.DIST }}
path: ./*.zip

- name: Upload distribution metadata
if: runner.os == 'Linux'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.DIST }}
path: |
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
echo "$repo next version is $next"
- name: Download distribution
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.DIST }}
path: ${{ env.DIST }}
Expand Down

0 comments on commit c355376

Please # to comment.