Skip to content

Release v1.0.3

Release v1.0.3 #36

Workflow file for this run

name: Synchronize master to beta
on:
workflow_dispatch:
pull_request:
types: [closed]
branches:
- master
permissions:
contents: write
jobs:
on-pr-merged:
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Synchronize
run: |
git fetch origin
git checkout beta
git reset --hard origin/master
git push -f origin beta