Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/nightly-build-1x.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ jobs:
echo "SHA=$(git rev-parse --short HEAD)" >> ${GITHUB_ENV}

- name: Build packages
uses: tauri-apps/tauri-action@v0
uses: tauri-apps/tauri-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: "--bundles deb,rpm"
args: --bundles deb,rpm --ignore-version-mismatches

- name: Upload DEB and RPM to S3
env:
Expand Down Expand Up @@ -174,11 +174,11 @@ jobs:
run: security unlock-keychain -p "${{ secrets.BUILD_KEYCHAIN_PASSWORD }}" build.keychain

- name: Build app
uses: tauri-apps/tauri-action@v0
uses: tauri-apps/tauri-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: --target universal-apple-darwin
args: --target universal-apple-darwin --ignore-version-mismatches

- name: Build installation package
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly-build-2x.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ jobs:
pnpm build

- name: Build packages
uses: tauri-apps/tauri-action@v0.5.23 # .24 seems broken, TODO: update when fixed
uses: tauri-apps/tauri-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tauriScript: cargo tauri
args: "--bundles deb,rpm"
args: --bundles deb,rpm --ignore-version-mismatches

- name: Upload DEB and RPM to S3
env:
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tauriScript: cargo tauri
args: --config src-tauri/tauri.app.conf.json --target universal-apple-darwin
args: --config src-tauri/tauri.app.conf.json --target universal-apple-darwin --ignore-version-mismatches

- name: Build installation package
run: |
Expand Down
Loading