diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2ad22cd..04e8103 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,28 +96,18 @@ jobs: skip-git-pull: true git-push: false - - name: 📦 Prepare Release Notes - id: release_notes - run: | - echo "## Changelog" > release-body.md - echo "${{ steps.changelog.outputs.changelog }}" >> release-body.md - echo "" >> release-body.md - echo "## Docker Images" >> release-body.md - echo "The following Docker images were built and published to GHCR:" >> release-body.md - echo "" >> release-body.md - TAG="${GITHUB_REF##*/}" - ARCHS=('bun-linux-x64-modern' 'bun-linux-arm64' 'bun-darwin-arm64') - for ARCH in "${ARCHS[@]}"; do - IMAGE="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${TAG}-${ARCH}" - echo "- [$IMAGE]($IMAGE)" >> release-body.md - done - echo "::set-output name=body::$(cat release-body.md)" - - name: 🎉 Create GitHub Release uses: ncipollo/release-action@v1 with: allowUpdates: true tag: ${{ github.ref_name }} name: ${{ github.ref_name }} - body: ${{ steps.release_notes.outputs.body }} + body: | + ${{ steps.changelog.outputs.changelog }} + + ## Docker Images + The following Docker images were built and published to GHCR: + + - [ghcr.io/sedaprotocol/seda-data-proxy:${{ github.ref_name }}-bun-linux-x64-modern](https://ghcr.io/sedaprotocol/seda-data-proxy:${{ github.ref_name }}-bun-linux-x64-modern) + - [ghcr.io/sedaprotocol/seda-data-proxy:${{ github.ref_name }}-bun-linux-arm64](https://ghcr.io/sedaprotocol/seda-data-proxy:${{ github.ref_name }}-bun-linux-arm64) token: ${{ secrets.GITHUB_TOKEN }}