Skip to content

Commit

Permalink
Update dependencies and attempt to get signing working on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
erskingardner committed Dec 31, 2024
1 parent 976e125 commit 51ed413
Show file tree
Hide file tree
Showing 3 changed files with 367 additions and 340 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ jobs:
- name: Run clippy
run: cd src-tauri && cargo clippy -- -D warnings

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}

- name: Setup Android signing
run: |
cd src-tauri/gen/android
Expand All @@ -62,5 +68,10 @@ jobs:
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SIGN: 1
SIGN_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
APPIMAGETOOL_SIGN_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
APPIMAGETOOL_FORCE_SIGN: 1

with:
args: ${{ matrix.args }}
Loading

0 comments on commit 51ed413

Please sign in to comment.