You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tauri-plugins-workspace/.github/workflows/sync.yml

22 lines
440 B

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 }}