Skip to content

Commit

Permalink
Update nightly.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Bulatov authored May 16, 2024
1 parent 4106ab0 commit 6257b3a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ on:
branch:
description: 'Branch to target for release'
required: false
default: 'redhat-3.10'
default: 'redhat-3.12'
tag:
description: 'Tag to attach to image'
required: false
default: '3.10.0-nightly'
default: '3.12.0-nightly'
channel:
description: 'Operatorhub channel, see https://github.com/redhat-openshift-ecosystem/community-operators-prod/blob/main/operators/project-quay/project-quay.package.yaml'
required: false
default: 'candidate-3.10'
default: 'candidate-3.12'
clair-version:
description: 'Clair version, will use latest if left empty'
required: false
Expand All @@ -38,15 +38,15 @@ jobs:
id: params
# Default vars must be updated if nightly version is changed
run: |
branchDefault='redhat-3.10'
branchDefault='redhat-3.12'
branch=$(test -n "${{github.event.inputs.branch}}" && echo "${{github.event.inputs.branch}}" || echo $branchDefault)
echo BRANCH=$branch >> $GITHUB_OUTPUT
tagDefault='3.10.0-nightly'
tagDefault='3.12.0-nightly'
tag=$(test -n "${{github.event.inputs.tag}}" && echo "${{github.event.inputs.tag}}" || echo $tagDefault)
echo TAG=$tag >> $GITHUB_OUTPUT
channelDefault='candidate-3.10'
channelDefault='candidate-3.12'
channel=$(test -n "${{github.event.inputs.channel}}" && echo "${{github.event.inputs.channel}}" || echo $channelDefault)
echo CHANNEL=$channel >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 6257b3a

Please sign in to comment.