Skip to content

Commit

Permalink
Fix name normalization. (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
anybodys authored Feb 19, 2024
1 parent 8641506 commit 5bc7291
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Release It!
run: |
cd ${{ env.APP }}
export REVISION_NAME=$( echo "${{ env.APP}}-${{ env.VERSION }}" | sed s/\\./-/g )
export REVISION_NAME=$( echo "${{ env.APP}}-${{ env.VERSION }}" | sed s/[^a-zA-Z0-9]/-/g )
echo "Depoying Service file..."
envsubst < service.yaml
# Yaml doesn't support variable sub, so use envsubst and read file from stdin.
Expand Down

0 comments on commit 5bc7291

Please sign in to comment.