mirror of
https://github.com/Brotocol-xyz/bro-sdk.git
synced 2026-01-12 14:54:21 +08:00
21 lines
326 B
YAML
21 lines
326 B
YAML
name: Auto sync latest release branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build_and_preview:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Sync git history
|
|
shell: bash
|
|
run: ./scripts/syncLatestReleaseBranch.sh
|