Skip to content

Commit 3fde4be

Browse files
committed
Update CI/CD
1 parent abf6620 commit 3fde4be

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/cicd.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
run: |
3636
GOARCH=${{ matrix.architecture }} GOOS=linux go build -v -o kman-${{ matrix.architecture }} ./cmd/kman/kman.go
3737
38+
- name: List files in current working directory
39+
run: ls -alh
40+
3841
- name: Upload build artifacts
3942
uses: actions/upload-artifact@v4
4043
with:
@@ -49,10 +52,17 @@ jobs:
4952
steps:
5053
- name: Download build artifacts
5154
uses: actions/download-artifact@v3
55+
56+
- name: List files in current working directory
57+
run: ls -alh
5258

5359
- name: Create GitHub Release
5460
uses: softprops/action-gh-release@v2
5561
with:
56-
files: kman-*
62+
files: |
63+
kman-amd64
64+
kman-arm64
65+
kman-386
66+
kman-riscv64
5767
token: ${{ secrets.RELEASE_PAT }}
5868

0 commit comments

Comments
 (0)