Skip to content

Commit

Permalink
upgrade download artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod committed Aug 13, 2024
1 parent af9790a commit d89250c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
echo "zipSha=$(shasum -a 256 op-besu*.zip)" >> $GITHUB_OUTPUT
echo "tarSha=$(shasum -a 256 op-besu*.tar.gz)" >> $GITHUB_OUTPUT
- name: upload tarball
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
uses: actions/upload-artifact@v4
with:
path: 'build/distributions/op-besu*.tar.gz'
name: op-besu-${{ github.event.release.name }}.tar.gz
compression-level: 0
- name: upload zipfile
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
uses: actions/upload-artifact@v4
with:
path: 'build/distributions/op-besu*.zip'
name: op-besu-${{ github.event.release.name }}.zip
Expand All @@ -64,7 +64,7 @@ jobs:
distribution: temurin
java-version: 21
- name: Download zip
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe
uses: actions/download-artifact@v4
with:
pattern: op-besu-*.zip
merge-multiple: true
Expand Down Expand Up @@ -288,8 +288,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: ⏬Download all the build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
pattern: op-besu-*.zip
path: distributions
- run: ls distributions
- name: ✨Github Release (version = ${{ github.event.release.name }})
Expand Down

0 comments on commit d89250c

Please sign in to comment.