There was an error while loading. Please reload this page.
1 parent 9f82ddb commit 62b310cCopy full SHA for 62b310c
1 file changed
.github/workflows/release.yml
@@ -51,7 +51,7 @@ jobs:
51
- name: Write release notes
52
shell: bash
53
run: |
54
- cat > RELEASE_NOTES.md <<'EOF'
+ cat > "$RUNNER_TEMP/RELEASE_NOTES.md" <<'EOF'
55
Bomly release ${{ github.ref_name }}
56
57
Assets in this draft release include:
@@ -90,7 +90,7 @@ jobs:
90
with:
91
distribution: goreleaser
92
version: v2.16.0
93
- args: release --clean --release-notes=RELEASE_NOTES.md
+ args: release --clean --release-notes=${{ runner.temp }}/RELEASE_NOTES.md
94
env:
95
GITHUB_TOKEN: ${{ github.token }}
96
TAP_GITHUB_TOKEN: ${{ steps.package-token.outputs.token }}
0 commit comments