Skip to content

Commit 5c1c6d2

Browse files
fix(ci): correct version env expression in package action (#36)
1 parent 95a867b commit 5c1c6d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/package/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ runs:
3131
make test
3232
- name: Build x86_64 packages
3333
env:
34-
VERSION: {{ github.ref_name }}
34+
VERSION: ${{ github.ref_name }}
3535
CARGO_TARGET: x86_64-unknown-linux-gnu
3636
GLIBC_VERSION: 2.27
3737
shell: bash
3838
run: make package
3939
- name: Build aarch64 packages
4040
env:
41-
VERSION: {{ github.ref_name }}
41+
VERSION: ${{ github.ref_name }}
4242
CARGO_TARGET: aarch64-unknown-linux-gnu
4343
BIN_UTIL_PREFIX: aarch64-linux-gnu-
4444
GLIBC_VERSION: 2.27

0 commit comments

Comments
 (0)