From a6e025802081342125c4cbb619c138576993e80d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Fri, 24 May 2024 02:05:27 +0200 Subject: [PATCH] [workflows:executables] include commit link in release notes --- .github/workflows/executables.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/executables.yml b/.github/workflows/executables.yml index 7a303ce2..b6d3c829 100644 --- a/.github/workflows/executables.yml +++ b/.github/workflows/executables.yml @@ -82,11 +82,15 @@ jobs: - name: Date run: echo "DATE=$(date '+${{ env.DATE_FORMAT }}')" >> "$GITHUB_ENV" + - name: Body + run: printf 'https://github.com/%s/commit/%s' '${{ github.repository }}' '${{ github.sha }}' > body.md + - uses: ncipollo/release-action@v1 with: owner: gdl-org repo: builds tag: ${{ env.DATE }} + bodyFile: body.md artifacts: "executable-*/*" allowUpdates: true makeLatest: true