Skip to content

Commit 1c37da4

Browse files
authored
Merge pull request #17 from tmax-cloud/binary-upload
Fix workflow to upload binary
2 parents 4656da4 + 9c64efb commit 1c37da4

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/hcsctl.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,13 @@ jobs:
6262
needs: [lint, build, e2e]
6363
runs-on: prolinux
6464
steps:
65-
- name: Upload binary
65+
- name: Upload hcsctl binary
6666
uses: actions/upload-artifact@v1
6767
with:
6868
name: hcsctl
69-
path: |
70-
hcsctl/build/hcsctl
71-
hcsctl/bild/hcsctl.test
69+
path: hcsctl/build/
70+
- name: Upload hcsctl.test binary
71+
uses: actions/upload-artifact@v1
72+
with:
73+
name: hcsctl.test
74+
path: hcsctl/build/

0 commit comments

Comments
 (0)