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 91ebfe6 commit a6d2773Copy full SHA for a6d2773
.github/workflows/release-alpine.yml
@@ -7,7 +7,8 @@ on:
7
8
env:
9
REGISTRY: ghcr.io
10
-
+ CROSS_SYSROOT: /mnt/alpine
11
+
12
jobs:
13
14
build:
@@ -40,7 +41,14 @@ jobs:
40
41
shell: alpine.sh {0}
42
43
- name: Build
- run: CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o ${{ steps.alpine-root.outputs.root-path }}/heplify .
44
+ run: CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o heplify .
45
+ shell: alpine.sh {0}
46
47
+ - name: Try to run the binary
48
+ run: ./heplify -h
49
50
- - run: ls -alF ${{ steps.alpine-root.outputs.root-path }}/heplify
51
+ - run: |
52
+ pwd
53
+ ls -alF
54
+ ls -alF ${{ steps.alpine-root.outputs.root-path }}/heplify
0 commit comments