Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@
echo "Nightly tag already points to this commit. Skipping update."
fi


# 🚨⚠️ WARNING: the GITHUB_TOKEN under this step, has access to write & read access to Contents, Pull Requests
# Which is why, it uses a fine-granted token with Read-Only Access to Public Repos Only.
- name: Generate Release Notes (Experimental)
if: ${{ success() && env.releaseRequired == 'true' }}
id: gen-release-notes
Expand All @@ -237,6 +238,8 @@
echo "$RELEASE_NOTES"
echo "EOF"
} >> $GITHUB_ENV
env:
GITHUB_TOKEN: ${{ secrets.NIGHTLY_RELEASE_NOTES_GH_TOKEN }}
- name: Release Nightly Version
# Only run this step, if not called from another workflow. And a previous step is successful with releasedRequired=true
id: release
Expand Down