mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-02-06 14:17:02 +00:00
fix paths
This commit is contained in:
parent
f576546b86
commit
9c3aec8499
8
.github/workflows/smoke-test-prod.yml
vendored
8
.github/workflows/smoke-test-prod.yml
vendored
@ -58,18 +58,18 @@ jobs:
|
||||
- name: cache node modules
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ${{ format('examples/{0}/node_modules', matrix.example) }}
|
||||
path: ${{ format('examples/node/{0}/node_modules', matrix.example) }}
|
||||
key: ${{ runner.OS }}-build-${{ hashFiles(format('examples/{0}/yarn.lock', matrix.example)) }}
|
||||
restore-keys: ${{ runner.OS }}-build-${{ env.cache-name }}-
|
||||
- name: install via yarn
|
||||
run: |
|
||||
cd ./examples/${{ matrix.example }}
|
||||
cd ./node/examples/${{ matrix.example }}
|
||||
yarn
|
||||
- name: build example
|
||||
run: |
|
||||
cd ./examples/${{ matrix.example }}
|
||||
cd ./node/examples/${{ matrix.example }}
|
||||
yarn build
|
||||
- name: yarn tauri build
|
||||
run: |
|
||||
cd ./examples/${{ matrix.example }}
|
||||
cd ./node/examples/${{ matrix.example }}
|
||||
yarn tauri:prod:build
|
||||
|
||||
Loading…
Reference in New Issue
Block a user