Files
tauri-plugins-workspace/.github/workflows/sync.yml
T
Jonas Kruckenberg 093001d876 fmt
2022-12-18 16:41:53 +01:00

23 lines
442 B
YAML

name: Sync
on:
push:
branches:
- dev
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
sync-to-mirrors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# potentially a build step here
- name: Sync
run: .github/sync-to-mirrors.sh
env:
BUILD_BASE: ./plugins
API_TOKEN_GITHUB: ${{ secrets.ORG_TAURI_BOT_PAT }}