Skip to content

Commit

Permalink
Merge pull request #121 from fosslife/master
Browse files Browse the repository at this point in the history
fix: missing keys
  • Loading branch information
Sparkenstein authored Nov 7, 2024
2 parents 7778543 + 35fa020 commit b72c16c
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Clean Secret
if: matrix.settings.platform == 'ubuntu-22.04'
run: echo ${{ secrets.TAURI_KEY_PASSWORD }} | sed 's/./& /g'

- name: install dependencies (ubuntu only)
if: matrix.settings.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.

Expand Down Expand Up @@ -69,8 +65,8 @@ jobs:
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
with:
tagName: devtoolsx-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "DevToolx-X v__VERSION__"
Expand Down

0 comments on commit b72c16c

Please sign in to comment.