We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1986291 commit 9afa3beCopy full SHA for 9afa3be
.github/workflows/flow.yaml
@@ -3,10 +3,19 @@ on:
3
push:
4
tags:
5
- '[0-9]+.[0-9]+.[0-9]+\+upstream*'
6
+ - '[0-9]+.[0-9]+.[0-9]+-rc*\+upstream*'
7
8
jobs:
9
release:
10
runs-on: ubuntu-latest
11
steps:
- - name: test step
12
- run: echo 'Prod step'
+ - name: Check release type
13
+ id: check_release
14
+ run: |
15
+ TYPE="release-candidate"
16
+ echo "type: ${TYPE}"
17
+ echo "RELEASE_SUFFIX=-rc" >> $GITHUB_ENV
18
+ echo "type=${TYPE}" >> $GITHUB_OUTPUT
19
+ - name: Update chart name for RC versions
20
+ if: needs.build.outputs.release_type == 'release-candidate'
21
+ run: echo "suffix is ${{ env.RELEASE_SUFFIX }}"
.github/workflows/yq.yaml
0 commit comments