Skip to content

Commit 2954c32

Browse files
committed
Fix: build
1 parent 35e05a7 commit 2954c32

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,27 @@ jobs:
2626
archive: tar.gz tar.xz tar.zst
2727
- target: x86_64-apple-darwin
2828
archive: zip
29+
- target: aarch64-unknown-linux-gnu
30+
archive: tar.gz tar.xz tar.zst
31+
- target: aarch64-apple-darwin
32+
archive: zip
33+
2934
steps:
3035
- uses: actions/checkout@master
3136
- name: Compile and release
3237
uses: rust-build/[email protected]
38+
id: compile
3339
env:
3440
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3541
with:
3642
TOOLCHAIN_VERSION: 1.83.0
3743
RUSTTARGET: ${{ matrix.target }}
3844
ARCHIVE_TYPES: ${{ matrix.archive }}
45+
46+
- name: Upload artifact
47+
uses: actions/upload-artifact@v3
48+
with:
49+
name: Binary
50+
path: |
51+
${{ steps.compile.outputs.BUILT_ARCHIVE }}
52+
${{ steps.compile.outputs.BUILT_CHECKSUM }}

Cargo.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,3 @@ webbrowser = "0.8"
2121
base64-url = "3.0.0"
2222
urlencoding = "2.1.3"
2323

24-
[features]
25-
static_ssl = ['openssl/vendored']
26-
27-
[dependencies.openssl]
28-
optional = true
29-
version = "0.10"
30-
features = ["vendored"]

0 commit comments

Comments
 (0)