Release current beta version as full release version #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release current beta version as full release version | |
on: workflow_dispatch | |
jobs: | |
sync_beta_to_main: | |
name: Push `beta` to `main` | |
runs-on: ubuntu-latest | |
steps: | |
# Warning: `beta` MUST include all commits from `main` otherwise the push will fail. This behaviour is not a bug and implemented by design. | |
- name: Push `beta` to `main` | |
uses: jojomatik/sync-branch@v2 | |
with: | |
source: "beta" | |
target: "main" | |
strategy: "fail" | |
github_token: ${{ secrets.GH_TOKEN }} |