Skip to content

Commit

Permalink
Feat/handle slashes (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Jan 12, 2023
1 parent ade841a commit 1f08d16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ runs:
echo imageStream=${IS} >> $GITHUB_OUTPUT
echo deploymentConfig=${DC} >> $GITHUB_OUTPUT
echo url=${URL} >> $GITHUB_OUTPUT
# Removes any double slashles, e.g. inputs.verification_path
echo url=${URL} | sed 's // / g' >> $GITHUB_OUTPUT
- name: Deploy
shell: bash
Expand Down

0 comments on commit 1f08d16

Please sign in to comment.