diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/push-test.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index f02a8cb3..8af407e9 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -25,7 +25,10 @@ jobs: sudo apt-get update sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf - name: install app dependencies and build it - run: npm install && npm run tauri build + run: | + npm install + bash ./node_modules/.bin/rollup -c + npm run tauri build - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |