Skip to content

Commit

Permalink
fix(build): get correct output for charts release
Browse files Browse the repository at this point in the history
  • Loading branch information
yvigara committed Jan 3, 2023
1 parent 07e68ce commit 442a87d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
outputs:
release_created: ${{ steps.release.outputs.release_created }}
release_tag_name: ${{ steps.release.outputs.tag_name }}
chart_release_created: ${{ steps.release.outputs['loki-gateway--release_created'] || steps.release.outputs['mimir-gateway--release_created'] }}
chart_release_tag_name: ${{ steps.release.outputs['loki-gateway--tag_name'] || steps.release.outputs['mimir-gateway--tag_name'] }}
chart_release_created: ${{ steps.release.outputs['charts/loki-gateway--release_created'] || steps.release.outputs['charts/mimir-gateway--release_created'] }}
chart_tag_name: ${{ steps.release.outputs['charts/loki-gateway--tag_name'] || steps.release.outputs['charts/mimir-gateway--tag_name'] }}

go-release:
needs: release-please
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ needs.release-please.outputs.chart_release_tag_name }}
ref: ${{ needs.release-please.outputs.chart_tag_name }}

- name: Fetch history
run: git fetch --prune --unshallow
Expand Down

0 comments on commit 442a87d

Please sign in to comment.