Skip to content

Commit

Permalink
fix(workflows/release): Get release number from tag job (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzypixelz authored Mar 13, 2024
1 parent ba50eec commit c75401b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
live-run: ${{ inputs.live-run }}
version: ${{ needs.tag.outputs.version }}
repo: ${{ github.repository }}
tags: "eclipse/zenoh:${{ inputs.version }}"
tags: "eclipse/zenoh:${{ needs.tag.outputs.version }}"
binary: zenohd
files: |
zenohd
Expand All @@ -169,7 +169,7 @@ jobs:
live-run: ${{ inputs.live-run }}
version: ${{ needs.tag.outputs.version }}
repo: ${{ github.repository }}
tags: "${{ github.repository }}:${{ inputs.version }}"
tags: "${{ github.repository }}:${{ needs.tag.outputs.version }}"
binary: zenohd
files: |
zenohd
Expand Down

0 comments on commit c75401b

Please sign in to comment.