Skip to content

v0.14.1

v0.14.1 #2

Workflow file for this run

name: update-stable
on:
release:
types:
- released
jobs:
update-stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: main
fetch-depth: 0
- name: Push to stable branch
run: |
git pull
git checkout stable
git merge main -m "merge main"
git push