We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de49967 + a6b64a6 commit d81694dCopy full SHA for d81694d
.github/workflows/multi-platform.yml
@@ -68,6 +68,16 @@ jobs:
68
echo "GIT_STRIPPED_VERSION=$GIT_STRIPPED_VERSION" >> $GITHUB_ENV
69
shell: bash
70
71
+ - name: Generate release notes
72
+ id: release_notes
73
+ run: |
74
+ RELEASE_NOTES=$(gh release create ${{ github.ref_name }} --generate-notes --repo ${{ github.repository }} | tail -n +2) # Get generated release notes, excluding the first line
75
+ echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
76
+ echo "$RELEASE_NOTES" >> $GITHUB_ENV
77
+ echo "EOF" >> $GITHUB_ENV
78
+ env:
79
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80
+
81
- name: Set up QEMU
82
uses: docker/setup-qemu-action@v3
83
- name: Set up Docker Buildx
0 commit comments