Do Release #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Do Release | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
# All this job does is fast forward the release branch to the latest commit on main | |
jobs: | |
do-release: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: release | |
ssh-key: ${{ secrets.RELEASE_DEPLOY_KEY }} | |
- name: Fast forward release branch to main | |
run: | | |
git fetch origin main | |
git merge --ff-only origin/main | |
git push origin release |