-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
1,098 additions
and
4,465 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 |
---|---|---|
|
@@ -71,12 +71,12 @@ jobs: | |
# Prepare the debian directory with custom files | ||
mkdir -p .build/debian | ||
sed 's/@RUST@/rust-all(>=1.70)/g' packaging/deb/control.in > .build/debian/control | ||
sed 's/@RUST@/rust-all(>=1.80)/g' packaging/deb/control.in > .build/debian/control | ||
sed 's/@OFFLINE@/1/g' packaging/deb/rules.in > .build/debian/rules | ||
cp packaging/deb/postrm .build/debian/postrm | ||
- name: Publish to PPA | ||
uses: yuezk/publish-ppa-package@v2 | ||
uses: yuezk/publish-ppa-package@gp | ||
with: | ||
repository: "yuezk/globalprotect-openconnect" | ||
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }} | ||
|
@@ -85,5 +85,7 @@ jobs: | |
debian_dir: publish-ppa/globalprotect-openconnect-*/.build/debian | ||
deb_email: "[email protected]" | ||
deb_fullname: "Kevin Yue" | ||
extra_ppa: "yuezk/globalprotect-openconnect liushuyu-011/rust-bpo-1.75" | ||
extra_ppa: "yuezk/globalprotect-openconnect liushuyu-011/rust-updates-1.80" | ||
# Ubuntu 18.04 and 20.04 are excluded because tauri2 no longer supports them | ||
excluded_series: "bionic focal" | ||
revision: ${{ inputs.revision }} |
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 |
---|---|---|
|
@@ -8,3 +8,6 @@ | |
.cargo | ||
.build | ||
SNAPSHOT | ||
|
||
# Tauri generated files | ||
gen |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,11 +1,11 @@ | ||
[workspace] | ||
resolver = "2" | ||
|
||
members = ["crates/*", "apps/gpclient", "apps/gpservice", "apps/gpgui-helper/src-tauri"] | ||
members = ["crates/*", "apps/gpclient", "apps/gpservice", "apps/gpauth", "apps/gpgui-helper/src-tauri"] | ||
|
||
[workspace.package] | ||
rust-version = "1.70" | ||
version = "2.3.9" | ||
rust-version = "1.80" | ||
version = "2.4.0" | ||
authors = ["Kevin Yue <[email protected]>"] | ||
homepage = "https://github.com/yuezk/GlobalProtect-openconnect" | ||
edition = "2021" | ||
|
Oops, something went wrong.