-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: seven <[email protected]>
- Loading branch information
Showing
1 changed file
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf pkg-config libssl-dev | ||
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf pkg-config libssl-dev aarch64-linux-gnu-gcc | ||
- name: install frontend dependencies | ||
run: npm ci --legacy-peer-deps | ||
- run: npm run lint:check | ||
|
@@ -82,6 +82,7 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PKG_CONFIG_ALLOW_CROSS: 1 | ||
CC_aarch64_unknown_linux_gnu: aarch64-linux-gnu-gcc | ||
# APPLE_ID: ${{ secrets.APPLE_ID }} | ||
# APPLE_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }} | ||
# APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | ||
|
@@ -100,7 +101,22 @@ jobs: | |
releaseDraft: true | ||
prerelease: true | ||
|
||
- name: Sign files with Trusted Signing | ||
if: matrix.os == 'windows-latest' | ||
uses: azure/[email protected] | ||
with: | ||
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} | ||
azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} | ||
endpoint: https://eus.codesigning.azure.net/ | ||
trusted-signing-account-name: geek-fun | ||
certificate-profile-name: geek-fun | ||
files-folder: ${{ github.workspace }}\src-tauri\target\release\bundle\nsis\ | ||
files-folder-depth: 7 | ||
files-folder-filter: exe | ||
file-digest: SHA256 | ||
timestamp-rfc3161: http://timestamp.acs.microsoft.com | ||
timestamp-digest: SHA256 | ||
|
||
# - name: Distribute artifacts to R2 | ||
# uses: ryand56/r2-upload-action@master | ||
|