Skip to content

Commit

Permalink
Merge pull request #298 from ZettaScaleLabs/fix-homebrew-publish
Browse files Browse the repository at this point in the history
fix: standalone archive following homebrew naming
  • Loading branch information
milyin authored Dec 3, 2024
2 parents 725a14b + 327cc33 commit d9bb7d5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,20 @@ jobs:
name: ${{ steps.build.outputs.archive-lib }}
path: ${{ steps.build.outputs.archive-lib }}

# Hack to upload header-only package in a format that homebrew release action can use.
- name: Upload archive for Homebrew (x86_64)
uses: actions/upload-artifact@v4
with:
name: zenoh-cpp-${{ inputs.version || '0.0.0'}}-x86_64-apple-darwin-standalone.zip
path: ${{ steps.build.outputs.archive-lib }}

# Hack to upload header-only package in a format that homebrew release action can use.
- name: Upload archive for Homebrew (aarch64)
uses: actions/upload-artifact@v4
with:
name: zenoh-cpp-${{ inputs.version || '0.0.0'}}-aarch64-apple-darwin-standalone.zip
path: ${{ steps.build.outputs.archive-lib }}

- name: Upload DEB archive
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit d9bb7d5

Please sign in to comment.