Skip to content

Commit

Permalink
fix: stop using backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
tmlye committed Apr 11, 2024
1 parent a6aefd2 commit a9717c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Build & Push Image to Molnett
run: |
molnctl auth docker
IMAGE_NAME=`molnctl svcs image-name -u molnett.yaml`
IMAGE_NAME=$(molnctl svcs image-name -u molnett.yaml)
docker buildx build . -t $IMAGE_NAME
docker push $IMAGE_NAME
- name: Deploy Ephemeral Environment
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
ENV_NAME: pr-${{ github.event.number }}-${{ github.head_ref }}
run: |
# Replace special characters in branch name with dash
ENV_NAME=`echo $ENV_NAME | tr $'!\'#$%&()+,-./;<=>@]_\`{|}' '-'`
ENV_NAME=$(echo $ENV_NAME | tr $'!\'#$%&()+,-./;<=>@]_\`{|}' '-')
echo "env=$ENV_NAME" >> $GITHUB_OUTPUT
- name: Deploy Ephemeral Environment
id: deploy
Expand Down

0 comments on commit a9717c1

Please sign in to comment.