Files
tauri-plugins-workspace/.github/workflows/sync.yml
T
Jonas Kruckenberg cd9daf6b20 Update sync.yml
2023-01-03 19:02:30 +01:00

24 lines
463 B
YAML

name: Sync
on:
workflow_dispatch:
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 }}