Skip to content

Commit e04b085

Browse files
committed
fixing go releaser
1 parent 503305e commit e04b085

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Create release
22

33
on:
44
push:
5-
tags:
6-
- v*
5+
branches:
6+
- releaseFix
77

88
permissions:
99
contents: write

.goreleaser.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,16 +112,17 @@ builds:
112112
- echo "a4a3d09b36fabb65b119d5ba23442c23694401fcbee4451fe6b7e22e325a4bac /lib/libwasmvm_muslc.aarch64.a" | sha256sum -c
113113
- cp /lib/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.a
114114
- curl -LO https://musl.cc/aarch64-linux-musl-cross.tgz
115+
- mkdir -p /lib/musl-cross
115116
- tar xf aarch64-linux-musl-cross.tgz
116-
- mv aarch64-linux-musl-cross /opt/musl-cross
117+
- mv aarch64-linux-musl-cross /lib/musl-cross
117118
goos:
118119
- linux
119120
goarch:
120121
- arm64
121122
env:
122123
- CGO_ENABLED=1
123-
- CC=/opt/musl-cross/bin/aarch64-linux-musl-gcc
124-
- LD=/opt/musl-cross/bin/aarch64-linux-musl-ld
124+
- CC=/lib/musl-cross/bin/aarch64-linux-musl-gcc
125+
- LD=/lib/musl-cross/bin/aarch64-linux-musl-ld
125126
- CGO_LDFLAGS=-L/lib
126127
flags:
127128
- -mod=readonly

0 commit comments

Comments
 (0)