Skip to content

Commit 9afa3be

Browse files
author
Your Name
committed
test new
1 parent 1986291 commit 9afa3be

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

.github/workflows/flow.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,19 @@ on:
33
push:
44
tags:
55
- '[0-9]+.[0-9]+.[0-9]+\+upstream*'
6+
- '[0-9]+.[0-9]+.[0-9]+-rc*\+upstream*'
67

78
jobs:
89
release:
910
runs-on: ubuntu-latest
1011
steps:
11-
- name: test step
12-
run: echo 'Prod step'
12+
- 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

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)