mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
23 lines
442 B
YAML
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 }}
|