Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ais-one committed Sep 14, 2023
1 parent 1b7dd5a commit 62edb25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy-cr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ on:
description: 'container image tag'
default: 'latest'
required: true
cr_imagename:
description: 'container image name - leave blank to use GITHUB variables (if specified) or repo name'
default: ''
required: false
env:
CR_IMAGENAME: ${{ vars.CR_IMAGENAME || github.event.repository.name }}
CR_IMAGENAME: ${{ vars.CR_IMAGENAME || github.event.inputs.cr_imagename || github.event.repository.name }}
CR_PASSWORD: ${{ secrets.CR_PASSWORD }}
CR_USERNAME: ${{ secrets.CR_USERNAME }}
CR_HOST: ${{ vars.CR_HOST }}
Expand Down

0 comments on commit 62edb25

Please sign in to comment.