mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
Merge branch 'dev' into ci/actions-rs
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
# Order is important; the last matching pattern takes the most precedence.
|
||||
* @tauri-apps/plugin-maintainers
|
||||
|
||||
# Currently CI/CD for plugins are in heavy flux, and the plugin team manages it themselves.
|
||||
# .github @tauri-apps/wg-devops
|
||||
@@ -1,6 +1,7 @@
|
||||
name: Sync
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
@@ -14,7 +15,21 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
# potentially a build step here
|
||||
- name: Cache pnpm modules
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.pnpm-store
|
||||
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
- uses: pnpm/action-setup@v2.2.4
|
||||
with:
|
||||
run_install: true
|
||||
- name: Build packages
|
||||
run: pnpm build
|
||||
- name: Sync
|
||||
run: .github/sync-to-mirrors.sh
|
||||
env:
|
||||
|
||||
Reference in New Issue
Block a user