Skip to content

Commit

Permalink
enforce lower-case dev image name
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphvK committed Mar 26, 2024
1 parent 65df7ba commit 75fff18
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,12 @@ runs:
with:
string: ${{ inputs.image-name }}

- name: Enforce lower-case dev image name
id: dev-image-name
uses: ASzc/change-string-case-action@v6
with:
string: ${{ inputs.dev-image-name }}

- name: Build images
id: build-images
shell: bash
Expand All @@ -190,7 +196,7 @@ runs:
COMMAND: ${{ inputs.command }}
IMAGE_NAME: ${{ steps.image-name.outputs.lowercase }}
IMAGE_TAG: ${{ inputs.image-tag }}
DEV_IMAGE_NAME: ${{ inputs.dev-image-name }}
DEV_IMAGE_NAME: ${{ steps.dev-image-name.outputs.lowercase }}
DEV_IMAGE_TAG: ${{ inputs.dev-image-tag }}
RMW_IMPLEMENTATION: ${{ inputs.rmw-implementation }}
ROS_DISTRO: ${{ inputs.ros-distro }}
Expand Down

0 comments on commit 75fff18

Please sign in to comment.