Skip to content

Commit

Permalink
test new
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Aug 14, 2023
1 parent 1986291 commit 9afa3be
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 16 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/flow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,19 @@ on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+\+upstream*'
- '[0-9]+.[0-9]+.[0-9]+-rc*\+upstream*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: test step
run: echo 'Prod step'
- name: Check release type
id: check_release
run: |
TYPE="release-candidate"
echo "type: ${TYPE}"
echo "RELEASE_SUFFIX=-rc" >> $GITHUB_ENV
echo "type=${TYPE}" >> $GITHUB_OUTPUT
- name: Update chart name for RC versions
if: needs.build.outputs.release_type == 'release-candidate'
run: echo "suffix is ${{ env.RELEASE_SUFFIX }}"
14 changes: 0 additions & 14 deletions .github/workflows/yq.yaml

This file was deleted.

0 comments on commit 9afa3be

Please sign in to comment.