We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 655551a commit 3398ea8Copy full SHA for 3398ea8
.github/workflows/sign-in-env-gha-ast.yml
@@ -42,8 +42,8 @@ jobs:
42
- name: Build application
43
shell: bash
44
run: |
45
- GOARCH=amd64 go build -o -s -w -X main.AppVersion==${{ github.event.inputs.release_name }} -o rmstale-amd64.exe ./rmstale.go
46
- GOARCH=arm64 go build -o -s -w -X main.AppVersion==${{ github.event.inputs.release_name }} -o rmstale-arm64.exe ./rmstale.go
+ GOARCH=amd64 go build -ldflags="-s -w -X main.AppVersion==${{ github.event.inputs.release_name }}" -o rmstale-amd64.exe ./rmstale.go
+ GOARCH=arm64 go build -ldflags="-s -w -X main.AppVersion==${{ github.event.inputs.release_name }}" -o rmstale-arm64.exe ./rmstale.go
47
48
- name: Upload artifacts
49
uses: actions/upload-artifact@v4
@@ -97,3 +97,4 @@ jobs:
97
98
99
100
+
0 commit comments