Skip to content

Commit

Permalink
fix: fix release-please pipeline for cli
Browse files Browse the repository at this point in the history
  • Loading branch information
uptickmetachu committed Dec 5, 2024
1 parent fd8a67c commit 823eed7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
release-please:
runs-on: ubuntu-latest
outputs:
cli-release-created: ${{ steps.release.outputs['.--release_created'] }}
cli-release-created: ${{ steps.release.outputs['release_created'] }}
server-release-created: ${{ steps.release.outputs['gitops_server--release_created'] }}
helm-release-created: ${{ steps.release.outputs['charts/gitops--release_created'] }}
cli-version: ${{ steps.release.outputs['.--tag_name'] }}
cli-version: ${{ steps.release.outputs['tag_name'] }}
server-version: ${{ steps.release.outputs['gitops_server--tag_name'] }}
helm-version: ${{ steps.release.outputs['charts/gitops--tag_name'] }}
sha: ${{ steps.release.outputs.sha }}
Expand All @@ -47,7 +47,7 @@ jobs:
name: Publishes tag to pypi
runs-on: ubuntu-latest
needs: release-please
if: ${{ needs.release-please.outputs.cli-version }}
if: ${{ needs.release-please.outputs.cli-release-created}}
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 823eed7

Please sign in to comment.