Skip to content

Commit

Permalink
fix: Versioning in image publishing workflow (#2159)
Browse files Browse the repository at this point in the history
* Fix typo in version input

Signed-off-by: Carson Cook <[email protected]>

* Improve workflow name

Signed-off-by: Carson Cook <[email protected]>

* Improve workflow name

Signed-off-by: Carson Cook <[email protected]>
(cherry picked from commit db52527)
  • Loading branch information
CarsonCook committed Mar 11, 2022
1 parent b427f79 commit e40670c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/image-publish-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
- name: Set gradle.properties version
# images publish with the version in gradle.properties
# if a version is provided, use that version to publish, else use value in gradle.properties
if: ${{ inputs.imageVersion != '' }}
if: ${{ inputs.versionOverride != '' }}
shell: bash
run: sed -i 's/version=.*/version=${{ inputs.imageVersion }}/g' gradle.properties

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow will create images for api-layer services
# This workflow is used to expose build-conformant-images.yml in a way that doesn't give users the option to release.
name: Create Image Only (No Release)
name: Image publish branch

on:
workflow_dispatch:
Expand Down

0 comments on commit e40670c

Please sign in to comment.