diff --git a/.github/workflows/dev-release.yml b/.github/workflows/dev-release.yml index 7c22fae..9e0bd91 100644 --- a/.github/workflows/dev-release.yml +++ b/.github/workflows/dev-release.yml @@ -1,4 +1,4 @@ -name: "publish" +name: "dev-release" on: push: @@ -44,9 +44,7 @@ jobs: if: matrix.platform == 'ubuntu-20.04' # This must match the platform value defined above. run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.0-dev 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. + sudo apt-get install -y libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf - name: import windows certificate if: matrix.platform == 'windows-latest' diff --git a/.github/workflows/pgp-sign-release.yml b/.github/workflows/pgp-sign-release.yml index 640e17f..ac5fc99 100644 --- a/.github/workflows/pgp-sign-release.yml +++ b/.github/workflows/pgp-sign-release.yml @@ -2,7 +2,7 @@ name: PGP sign release on: workflow_run: - workflows: ["publish"] + workflows: ["release"] types: - completed diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cef86c3..cf29a3a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: "publish" +name: "release" on: push: @@ -44,9 +44,7 @@ jobs: if: matrix.platform == 'ubuntu-20.04' # This must match the platform value defined above. run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.0-dev 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. + sudo apt-get install -y libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf - name: import windows certificate if: matrix.platform == 'windows-latest'