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 1ec7410 commit 108022fCopy full SHA for 108022f
.github/workflows/dgctl_release.yml
@@ -1,4 +1,4 @@
1
-name: release cli multi architecture
+name: release dgctl
2
on:
3
release:
4
branches:
@@ -29,7 +29,7 @@ jobs:
29
uses: actions/checkout@v4
30
- name: Build
31
run: |
32
- env GOOS=${{matrix.os}} GOARCH=${{matrix.arch}} CGO_ENABLED=0 go build -o dgctl ./dgctl/main.go
+ env GOOS=${{matrix.os}} GOARCH=${{matrix.arch}} CGO_ENABLED=0 go build -o dgctl_bin ./dgctl/main.go
33
34
- name: Publish linux-x64 exec to github
35
id: upload-release-asset-linux-x64
@@ -38,6 +38,6 @@ jobs:
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
with:
40
upload_url: ${{ github.event.release.upload_url }}
41
- asset_path: 'dgctl'
+ asset_path: 'dgctl_bin'
42
asset_name: dgctl-${{matrix.os}}-${{matrix.arch}}
43
asset_content_type: application/octet-stream
0 commit comments