Files
tauri-plugins-workspace/.github/workflows/sync.yml
T
Jonas Kruckenberg dcc2cf25bf wip
2022-12-15 11:35:17 +01:00

22 lines
440 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.API_TOKEN_GITHUB }}