Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 0 additions & 44 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,40 +5,6 @@ on:
- v*.*.*

jobs:
build-wireguard-go:
strategy:
fail-fast: false
matrix:
architecture: [arm64, amd64]
runs-on: [self-hosted, macOS]
steps:
- uses: actions/checkout@v5
with:
repository: WireGuard/wireguard-go
ref: master
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Build wireguard-go binary
run: make
env:
GOOS: darwin
GOARCH: ${{ matrix.architecture }}
- name: Upload binary artifact arm64
if: matrix.architecture == 'arm64'
uses: actions/upload-artifact@v4
with:
name: wireguard-go-aarch64-apple-darwin
path: wireguard-go
- name: Upload binary artifact amd64
if: matrix.architecture == 'amd64'
uses: actions/upload-artifact@v4
with:
name: wireguard-go-x86_64-apple-darwin
path: wireguard-go

create-release:
name: create-release
runs-on: self-hosted
Expand Down Expand Up @@ -221,7 +187,6 @@ jobs:
build-macos:
needs:
- create-release
- build-wireguard-go
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -267,15 +232,6 @@ jobs:
run: brew install protobuf
- name: Install ARM target
run: rustup target add aarch64-apple-darwin
- name: Download wireguard-go binary
uses: actions/download-artifact@v4
with:
name: wireguard-go-${{ matrix.target }}
path: src-tauri/resources-macos/binaries
- name: Rename wireguard-go binary
run: |
ls -l src-tauri/resources-macos/binaries
mv src-tauri/resources-macos/binaries/wireguard-go src-tauri/resources-macos/binaries/wireguard-go-${{ matrix.target }}
- name: Unlock keychain
run: security -v unlock-keychain -p "${{ secrets.KEYCHAIN_PASSWORD }}" /Users/admin/Library/Keychains/login.keychain
- name: Build app
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@
"lodash-es": "^4.17.21",
"merge-refs": "^2.0.0",
"millify": "^6.1.0",
"motion": "^12.23.21",
"motion": "^12.23.22",
"p-timeout": "^6.1.4",
"prop-types": "^15.8.1",
"radash": "^12.1.1",
"react": "^19.1.1",
"react": "^19.2.0",
"react-auth-code-input": "^3.2.1",
"react-click-away-listener": "^2.4.0",
"react-dom": "^19.1.1",
"react-dom": "^19.2.0",
"react-hook-form": "^7.63.0",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^10.1.0",
Expand All @@ -114,10 +114,10 @@
"@tauri-apps/cli": "^2.8.4",
"@types/file-saver": "^2.0.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"@types/node": "^24.6.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitejs/plugin-react-swc": "^4.1.0",
"autoprefixer": "^10.4.21",
"npm-run-all": "^4.1.5",
Expand All @@ -126,8 +126,8 @@
"sass": "~1.92.1",
"typedoc": "^0.28.13",
"typesafe-i18n": "^5.26.2",
"typescript": "^5.9.2",
"vite": "^7.1.7"
"typescript": "^5.9.3",
"vite": "^7.1.8"
},
"volta": {
"node": "20.5.1"
Expand Down
Loading