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 0b8e61e commit 3ebbc1cCopy full SHA for 3ebbc1c
.github/workflows/chartpress.yaml
@@ -33,9 +33,13 @@ jobs:
33
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
34
GITHUB_EVENT_NAME: ${{ github.event_name }}
35
run: |
36
- TAG=dev
37
- if [[ $GIT_BRANCH_NAME = "main" && $GITHUB_EVENT_NAME = "push" ]]
+ if [[ $GIT_BRANCH_NAME = "versioning" ]]
38
then
39
- TAG=stable
+ echo chartpress --push --publish-chart --tag ${OSM_SEED_VERSION}
+ elif [[ $GIT_BRANCH_NAME = "develop" ]]
40
+ then
41
+ TAG=dev
42
+ echo chartpress --push --publish-chart --tag ${OSM_SEED_VERSION}-$TAG.h$SHORT_GITHUB_SHA
43
+ else
44
+ echo chartpress --push --publish-chart
45
fi
- chartpress --push --publish-chart --tag ${OSM_SEED_VERSION}-$TAG.h$SHORT_GITHUB_SHA
0 commit comments