-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #280 from DefGuard/fix_close_tunel_on_quit
Catch Ctrl-C
- Loading branch information
Showing
40 changed files
with
7,196 additions
and
5,449 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "Build app & create release" | ||
name: 'Build app & create release' | ||
on: | ||
push: | ||
tags: | ||
|
@@ -18,9 +18,9 @@ jobs: | |
ref: master | ||
fetch-depth: 0 | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.20' | ||
go-version: '1.22' | ||
- name: Build wireguard-go binary | ||
run: make | ||
env: | ||
|
@@ -59,18 +59,18 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: "recursive" | ||
submodules: 'recursive' | ||
- name: Write release version | ||
run: | | ||
VERSION=$(echo ${GITHUB_REF_NAME#v} | cut -d '-' -f1) | ||
echo Version: $VERSION | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20" | ||
node-version: '20' | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
version: 9 | ||
run_install: false | ||
- name: Get pnpm store directory | ||
shell: bash | ||
|
@@ -162,18 +162,18 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: "recursive" | ||
submodules: 'recursive' | ||
- name: Write release version | ||
run: | | ||
VERSION=$(echo ${GITHUB_REF_NAME#v} | cut -d '-' -f1) | ||
echo Version: $VERSION | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20" | ||
node-version: '20' | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
version: 9 | ||
run_install: false | ||
- name: Get pnpm store directory | ||
shell: bash | ||
|
@@ -203,12 +203,12 @@ jobs: | |
uses: tauri-apps/tauri-action@v0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
APPLE_SIGNING_IDENTITY: "Developer ID Application: TEONITE (6WD6W6WQNV)" | ||
APPLE_SIGNING_IDENTITY: 'Developer ID Application: TEONITE (6WD6W6WQNV)' | ||
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }} | ||
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} | ||
APPLE_ID: "[email protected]" | ||
APPLE_ID: '[email protected]' | ||
APPLE_PASSWORD: ${{ secrets.NOTARYTOOL_APP_SPECIFIC_PASSWORD }} | ||
APPLE_TEAM_ID: "6WD6W6WQNV" | ||
APPLE_TEAM_ID: '6WD6W6WQNV' | ||
with: | ||
args: --target ${{ matrix.target }} -v | ||
- name: Build installation package | ||
|
@@ -240,18 +240,18 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: "recursive" | ||
submodules: 'recursive' | ||
- name: Write release version | ||
run: | | ||
$env:VERSION=echo ($env:GITHUB_REF_NAME.Substring(1) -Split "-")[0] | ||
echo Version: $env:VERSION | ||
echo "VERSION=$env:VERSION" >> $env:GITHUB_ENV | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20" | ||
node-version: '20' | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
version: 9 | ||
run_install: false | ||
- name: Get pnpm store directory | ||
shell: bash | ||
|
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
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
Oops, something went wrong.