We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52b992e commit 6668fb1Copy full SHA for 6668fb1
codefresh.yml
@@ -37,11 +37,12 @@ steps:
37
execute_release_pipeline:
38
title: "Execute release pipeline in case version was changed"
39
image: codefresh/cli
40
+ fail_fast: false
41
commands:
42
- 'apk update && apk add jq'
43
- 'export PACKAGE_VERSION=$(jq -r ".version" package.json)'
44
- "echo Current version: $PACKAGE_VERSION"
- - 'git tag | grep $PACKAGE_VERSION; if [ $? -eq 0 ]; then echo "Not running release flow because version has not changed"; else echo "running"; fi'
45
+ - "git tag $PACKAGE_VERSION && echo Running release pipeline && codefresh run 5a4c94d282ed4d00012b54e8 -b=master --detach"
46
when:
47
branch:
48
only: [ master ]
0 commit comments