Skip to content

Commit d18b97c

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

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/cicd.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ 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
38+
- name: Display structure of files
39+
run: ls -R
4040

4141
- name: Upload build artifacts
4242
uses: actions/upload-artifact@v4
@@ -51,10 +51,14 @@ jobs:
5151

5252
steps:
5353
- name: Download build artifacts
54-
uses: actions/download-artifact@v3
54+
uses: actions/download-artifact@v4
55+
with:
56+
name: kman_artifacts
57+
run-id: ${{ github.event.workflow_run.id }}
58+
github-token: ${{ secrets.GITHUB_TOKEN }}
5559

56-
- name: List files in current working directory
57-
run: ls -alh
60+
- name: Display structure of files
61+
run: ls -R
5862

5963
- name: Create GitHub Release
6064
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)