We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7b7426 commit a318830Copy full SHA for a318830
.github/workflows/release.yml
@@ -42,7 +42,7 @@ jobs:
42
- target: aarch64-apple-darwin
43
os: macos-latest
44
- target: x86_64-apple-darwin
45
- os: macos-13
+ os: macos-latest
46
- target: aarch64-unknown-linux-gnu
47
os: ubuntu-latest
48
use_cross: true
@@ -67,6 +67,8 @@ jobs:
67
68
- name: Build
69
shell: bash
70
+ env:
71
+ OPENSSL_STATIC: ${{ matrix.use_cross == 'true' && '1' || '' }}
72
run: |
73
if [ "${{ matrix.use_cross }}" = "true" ]; then
74
cross build --release --target ${{ matrix.target }}
@@ -101,6 +103,7 @@ jobs:
101
103
echo "sha256=${ARCHIVE}.sha256" >> "$GITHUB_OUTPUT"
102
104
105
- name: Upload to release
106
+ shell: bash
107
env:
108
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
109
0 commit comments