Skip to content

Commit

Permalink
ci: add workflow to update the release branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavosr8 committed Nov 8, 2024
1 parent be9c1ab commit b1163e1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/update-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Update Release Branch
on:
push:
tags:
- 'v*'

permissions:
contents: write

jobs:
update-release-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Update release branch
run: |
git push origin ${{ github.ref_name }}:release

0 comments on commit b1163e1

Please sign in to comment.