Skip to content

Commit

Permalink
rustflags, fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog-crabnebula committed Dec 3, 2024
1 parent 26895f5 commit b44cb48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
with:
toolchain: stable
cache: true
rustflags: ""

- name: install Linux dependencies
if: matrix.os == 'ubuntu-22.04'
Expand Down Expand Up @@ -84,7 +85,6 @@ jobs:
with:
command: release upload ${{ env.CN_APPLICATION }} --framework tauri
api-key: ${{ secrets.CN_API_KEY }}
path: ./src-tauri

build_android:
runs-on: ubuntu-latest
Expand All @@ -101,6 +101,7 @@ jobs:
with:
toolchain: stable
cache: true
rustflags: ""

- name: setup JDK 17
uses: actions/setup-java@v4
Expand Down Expand Up @@ -146,7 +147,6 @@ jobs:
with:
command: release upload ${{ env.CN_APPLICATION }} --framework tauri
api-key: ${{ secrets.CN_API_KEY }}
path: ./src-tauri

build_ios:
runs-on: macos-latest
Expand All @@ -163,6 +163,7 @@ jobs:
with:
toolchain: stable
cache: true
rustflags: ""

- name: install iOS target
run: rustup target add aarch64-apple-ios
Expand Down Expand Up @@ -198,7 +199,6 @@ jobs:
with:
command: release upload ${{ env.CN_APPLICATION }} --framework tauri
api-key: ${{ secrets.CN_API_KEY }}
path: ./src-tauri

publish:
needs: [build_desktop, build_android, build_ios]
Expand Down

0 comments on commit b44cb48

Please sign in to comment.