Skip to content

Commit 148567c

Browse files
committed
ci: use underscores for publish
1 parent f0e9dc1 commit 148567c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
zip -qj $ZIP_OUTPUT bin/*
9191
- uses: actions/upload-artifact@v4
9292
with:
93-
name: hostd-linux-${{ matrix.go-arch }}
93+
name: hostd_linux_${{ matrix.go-arch }}
9494
path: release/*
9595
build-mac:
9696
runs-on: macos-latest
@@ -161,7 +161,7 @@ jobs:
161161
xcrun notarytool submit -k ~/private_keys/AuthKey_$APPLE_API_KEY.p8 -d $APPLE_API_KEY -i $APPLE_API_ISSUER --wait --timeout 10m $ZIP_OUTPUT
162162
- uses: actions/upload-artifact@v4
163163
with:
164-
name: hostd-darwin-${{ matrix.go-arch }}
164+
name: hostd_darwin_${{ matrix.go-arch }}
165165
path: release/*
166166
build-windows:
167167
runs-on: windows-latest
@@ -191,7 +191,7 @@ jobs:
191191
7z a $ZIP_OUTPUT ./bin/*
192192
- uses: actions/upload-artifact@v4
193193
with:
194-
name: hostd-windows-amd64
194+
name: hostd_windows_amd64
195195
path: release/*
196196
combine-release-assets:
197197
runs-on: ubuntu-latest
@@ -200,7 +200,7 @@ jobs:
200200
- name: Merge Artifacts
201201
uses: actions/upload-artifact/merge@v4
202202
with:
203-
name: hostd-release-assets-combined
203+
name: hostd
204204

205205
dispatch-homebrew: # only runs on full releases
206206
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-')

.github/workflows/publish_testnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
zip -qj $ZIP_OUTPUT bin/*
9393
- uses: actions/upload-artifact@v4
9494
with:
95-
name: hostd-zen-linux-${{ matrix.go-arch }}
95+
name: hostd_zen_linux_${{ matrix.go-arch }}
9696
path: release/*
9797
build-mac:
9898
runs-on: macos-latest
@@ -163,7 +163,7 @@ jobs:
163163
xcrun notarytool submit -k ~/private_keys/AuthKey_$APPLE_API_KEY.p8 -d $APPLE_API_KEY -i $APPLE_API_ISSUER --wait --timeout 10m $ZIP_OUTPUT
164164
- uses: actions/upload-artifact@v4
165165
with:
166-
name: hostd-zen-darwin-${{ matrix.go-arch }}
166+
name: hostd_zen_darwin_${{ matrix.go-arch }}
167167
path: release/*
168168
build-windows:
169169
runs-on: windows-latest
@@ -193,7 +193,7 @@ jobs:
193193
7z a $ZIP_OUTPUT ./bin/*
194194
- uses: actions/upload-artifact@v4
195195
with:
196-
name: hostd-zen-windows-amd64
196+
name: hostd_zen_windows_amd64
197197
path: release/*
198198
combine-release-assets:
199199
runs-on: ubuntu-latest
@@ -202,4 +202,4 @@ jobs:
202202
- name: Merge Artifacts
203203
uses: actions/upload-artifact/merge@v4
204204
with:
205-
name: hostd-release-assets-combined
205+
name: hostd

0 commit comments

Comments
 (0)