Release 2.3.11

This commit is contained in:
Kevin Yue 2025-01-21 21:17:30 +08:00
parent b99053718a
commit 26d5d5bcf0
No known key found for this signature in database
GPG Key ID: 4D3A6EE977B15AC4
4 changed files with 27 additions and 18 deletions

View File

@ -71,7 +71,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
needs:
- setup-matrix
- tarball
steps:
- uses: pnpm/action-setup@v2
with:
@ -80,26 +80,31 @@ jobs:
- name: Prepare workspace
run: rm -rf source-offline && mkdir source-offline
- name: Checkout GlobalProtect-openconnect
uses: actions/checkout@v3
- name: Download tarball
uses: actions/download-artifact@v3
with:
token: ${{ secrets.GH_PAT }}
repository: yuezk/GlobalProtect-openconnect
ref: ${{ github.ref }}
path: source-offline/gp
name: artifact-source
path: source-offline
- name: Create offline tarball
run: |
cd source-offline/gp
cd source-offline
offline_tarball=$(basename *.tar.gz .tar.gz).offline.tar.gz
# Extract the tarball
tar -xzf *.tar.gz
cd */
make tarball OFFLINE=1
# Rename the tarball to .offline.tar.gz
mv .build/tarball/*.tar.gz .build/tarball/$(basename .build/tarball/*.tar.gz .tar.gz).offline.tar.gz
mv -v .build/tarball/*.tar.gz ../$offline_tarball
- name: Upload offline tarball
uses: actions/upload-artifact@v3
with:
path: source-offline/gp/.build/tarball/*.tar.gz
path: source-offline/*.offline.tar.gz
name: artifact-source-offline
if-no-files-found: error

14
Cargo.lock generated
View File

@ -581,7 +581,7 @@ dependencies = [
[[package]]
name = "common"
version = "2.3.10"
version = "2.3.11"
dependencies = [
"is_executable",
]
@ -1480,7 +1480,7 @@ dependencies = [
[[package]]
name = "gpapi"
version = "2.3.10"
version = "2.3.11"
dependencies = [
"anyhow",
"base64 0.22.1",
@ -1517,7 +1517,7 @@ dependencies = [
[[package]]
name = "gpauth"
version = "2.3.10"
version = "2.3.11"
dependencies = [
"anyhow",
"clap",
@ -1538,7 +1538,7 @@ dependencies = [
[[package]]
name = "gpclient"
version = "2.3.10"
version = "2.3.11"
dependencies = [
"anyhow",
"clap",
@ -1560,7 +1560,7 @@ dependencies = [
[[package]]
name = "gpgui-helper"
version = "2.3.10"
version = "2.3.11"
dependencies = [
"anyhow",
"clap",
@ -1578,7 +1578,7 @@ dependencies = [
[[package]]
name = "gpservice"
version = "2.3.10"
version = "2.3.11"
dependencies = [
"anyhow",
"axum",
@ -2747,7 +2747,7 @@ dependencies = [
[[package]]
name = "openconnect"
version = "2.3.10"
version = "2.3.11"
dependencies = [
"cc",
"common",

View File

@ -11,7 +11,7 @@ members = [
[workspace.package]
rust-version = "1.71.1"
version = "2.3.10"
version = "2.3.11"
authors = ["Kevin Yue <k3vinyue@gmail.com>"]
homepage = "https://github.com/yuezk/GlobalProtect-openconnect"
edition = "2021"

View File

@ -1,5 +1,9 @@
# Changelog
## 2.3.11 - 2024-01-21
- Update minimal Rust version to 1.71.1, so that the PPA can be built on Ubuntu 18.04.
## 2.3.10 - 2024-01-20
- Disconnect the VPN when sleep (fix [#166](https://github.com/yuezk/GlobalProtect-openconnect/issues/166), [#267](https://github.com/yuezk/GlobalProtect-openconnect/issues/267))