Skip to content

Commit

Permalink
build: use download artifact v4 for testWindows task
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod committed Aug 13, 2024
1 parent 77db689 commit 6e82e6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 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@v3
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
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@v3
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
path: 'build/distributions/op-besu*.zip'
name: op-besu-${{ github.event.release.name }}.zip
Expand All @@ -64,9 +64,8 @@ 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
- name: test Besu
run: |
Expand Down Expand Up @@ -297,6 +296,7 @@ jobs:
with:
body: |
${{ steps.github_release.outputs.changelog }}
`docker pull ${{env.registry}}/${{github.repository}}:${{github.event.release.name}}`
files: |
${{ github.workspace }}/distributions/**
Expand Down

0 comments on commit 6e82e6d

Please sign in to comment.