Skip to content

Commit

Permalink
ci: use underscores for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed May 16, 2024
1 parent f0e9dc1 commit 148567c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
zip -qj $ZIP_OUTPUT bin/*
- uses: actions/upload-artifact@v4
with:
name: hostd-linux-${{ matrix.go-arch }}
name: hostd_linux_${{ matrix.go-arch }}
path: release/*
build-mac:
runs-on: macos-latest
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
xcrun notarytool submit -k ~/private_keys/AuthKey_$APPLE_API_KEY.p8 -d $APPLE_API_KEY -i $APPLE_API_ISSUER --wait --timeout 10m $ZIP_OUTPUT
- uses: actions/upload-artifact@v4
with:
name: hostd-darwin-${{ matrix.go-arch }}
name: hostd_darwin_${{ matrix.go-arch }}
path: release/*
build-windows:
runs-on: windows-latest
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
7z a $ZIP_OUTPUT ./bin/*
- uses: actions/upload-artifact@v4
with:
name: hostd-windows-amd64
name: hostd_windows_amd64
path: release/*
combine-release-assets:
runs-on: ubuntu-latest
Expand All @@ -200,7 +200,7 @@ jobs:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: hostd-release-assets-combined
name: hostd

dispatch-homebrew: # only runs on full releases
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-')
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish_testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
zip -qj $ZIP_OUTPUT bin/*
- uses: actions/upload-artifact@v4
with:
name: hostd-zen-linux-${{ matrix.go-arch }}
name: hostd_zen_linux_${{ matrix.go-arch }}
path: release/*
build-mac:
runs-on: macos-latest
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
xcrun notarytool submit -k ~/private_keys/AuthKey_$APPLE_API_KEY.p8 -d $APPLE_API_KEY -i $APPLE_API_ISSUER --wait --timeout 10m $ZIP_OUTPUT
- uses: actions/upload-artifact@v4
with:
name: hostd-zen-darwin-${{ matrix.go-arch }}
name: hostd_zen_darwin_${{ matrix.go-arch }}
path: release/*
build-windows:
runs-on: windows-latest
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
7z a $ZIP_OUTPUT ./bin/*
- uses: actions/upload-artifact@v4
with:
name: hostd-zen-windows-amd64
name: hostd_zen_windows_amd64
path: release/*
combine-release-assets:
runs-on: ubuntu-latest
Expand All @@ -202,4 +202,4 @@ jobs:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: hostd-release-assets-combined
name: hostd

0 comments on commit 148567c

Please sign in to comment.