From 2993a39a597fff4986c0856cc0fd5f662d2bb6d9 Mon Sep 17 00:00:00 2001 From: thinkAfCod Date: Tue, 13 Aug 2024 18:48:12 +0800 Subject: [PATCH] fix release log --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9af11042c53..eaa5411034c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -303,16 +303,16 @@ jobs: - name: ⏬Download all the build artifacts uses: actions/download-artifact@v3 with: - pattern: op-besu-* - merge-multiple: true - path: 'build/distributions' + path: distributions - name: ✨Github Release (version = ${{ github.event.release.name }}) uses: softprops/action-gh-release@v1 with: - body: ${{ steps.github_release.outputs.changelog }} + body: | + ${{ steps.github_release.outputs.changelog }} + `docker pull ${{env.registry}}/${{github.repository}}:${{github.event.release.name}}` files: | - build/distributions/** + distributions/** generate_release_notes: true fail_on_unmatched_files: true env: