Skip to content

Do Release

Do Release #14

Workflow file for this run

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