Skip to content

Commit 8fe1a49

Browse files
[releases] Don't create github releases for cloud RCs (#1313)
Summary: There was a slight bug that slipped through which meant GitHub releases were only being created for cloud RCs instead of only for full releases. Type of change: /kind cleanup Test Plan: N/A Signed-off-by: James Bartlett <jamesbartlett@pixielabs.ai>
1 parent 13ebd8a commit 8fe1a49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/cloud_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
name: cloud-artifacts
5151
path: artifacts/
5252
create-github-release:
53-
if: ${{ contains(github.event.ref, '-') }}
53+
if: ${{ !contains(github.event.ref, '-') }}
5454
name: Create Release on Github
5555
runs-on: ubuntu-latest
5656
needs: build-release

0 commit comments

Comments
 (0)