We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56cb7a2 commit 56260adCopy full SHA for 56260ad
.github/actions/package/action.yml
@@ -29,16 +29,20 @@ runs:
29
make check
30
make deny
31
make test
32
+ - name: Configure release version
33
+ shell: bash
34
+ run: |
35
+ if [[ "${{ github.ref_type }}" == "tag" ]]; then
36
+ echo "VERSION=${{ github.ref_name }}" >> "$GITHUB_ENV"
37
+ fi
38
- name: Build x86_64 packages
39
env:
- VERSION: ${{ github.ref_name }}
40
CARGO_TARGET: x86_64-unknown-linux-gnu
41
GLIBC_VERSION: 2.27
42
shell: bash
43
run: make package
44
- name: Build aarch64 packages
45
46
CARGO_TARGET: aarch64-unknown-linux-gnu
47
BIN_UTIL_PREFIX: aarch64-linux-gnu-
48
0 commit comments