You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside the mp folder there are a bunch of different dll and exe files, everything works fine for me locally, all the dlls are normally in the bundle. But when I run the build via ci/cd for some reason the dll files seem to be filtered, I attached a zip archive that stores two files, one from the build that I assembled locally on my computer, and the second one that was assembled using ci/cd
name: 'release'
on:
push:
branches:
- main
jobs:
build:
permissions:
contents: write
strategy:
fail-fast: false
matrix:
include:
- platform: 'windows-latest'
args: ''
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm' # Set this to npm, yarn or pnpm.
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'
- name: install frontend dependencies
# If you don't have `beforeBuildCommand` configured you may want to build your frontend here too.
run: npm i -f
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
releaseName: 'v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false
includeUpdaterJson: true
args: ${{ matrix.args }}
The text was updated successfully, but these errors were encountered:
Here's my src-tauri file structure -
Inside the mp folder there are a bunch of different dll and exe files, everything works fine for me locally, all the dlls are normally in the bundle. But when I run the build via ci/cd for some reason the dll files seem to be filtered, I attached a zip archive that stores two files, one from the build that I assembled locally on my computer, and the second one that was assembled using ci/cd
tauri.conf -
ci/cd main.yaml -
The text was updated successfully, but these errors were encountered: