Add a workflow to automatically bump the v1 branch when publishing a release

This commit is contained in:
Benoit Daloze
2020-04-18 13:51:50 +02:00
parent 1fe99df431
commit da846ef6db
+10
View File
@@ -0,0 +1,10 @@
name: Update the v1 branch when a release is published
on:
release:
types: [published]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: git push origin HEAD:v1