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 abf6620 commit 3fde4beCopy full SHA for 3fde4be
.github/workflows/cicd.yml
@@ -35,6 +35,9 @@ jobs:
35
run: |
36
GOARCH=${{ matrix.architecture }} GOOS=linux go build -v -o kman-${{ matrix.architecture }} ./cmd/kman/kman.go
37
38
+ - name: List files in current working directory
39
+ run: ls -alh
40
+
41
- name: Upload build artifacts
42
uses: actions/upload-artifact@v4
43
with:
@@ -49,10 +52,17 @@ jobs:
49
52
steps:
50
53
- name: Download build artifacts
51
54
uses: actions/download-artifact@v3
55
56
57
58
59
- name: Create GitHub Release
60
uses: softprops/action-gh-release@v2
61
- files: kman-*
62
+ files: |
63
+ kman-amd64
64
+ kman-arm64
65
+ kman-386
66
+ kman-riscv64
67
token: ${{ secrets.RELEASE_PAT }}
68
0 commit comments