Skip to content

Commit

Permalink
ci: Fix appspot subdomain computation (shaka-project#4153)
Browse files Browse the repository at this point in the history
We should replace all dots with dashes, not just the first one.
  • Loading branch information
joeyparrish committed Apr 25, 2022
1 parent 4dc8027 commit 67a283a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
run: |
# This is the same as the version tag, but with dots replaced by
# dashes. For example, v3.2.2 would have the subdomain v3-2-2.
APPSPOT_SUBDOMAIN=$( echo ${{ needs.release.outputs.tag_name }} | sed -e 's/\./-/' )
APPSPOT_SUBDOMAIN=$( echo ${{ needs.release.outputs.tag_name }} | sed -e 's/\./-/g' )
echo APPSPOT_SUBDOMAIN=$APPSPOT_SUBDOMAIN >> $GITHUB_ENV
# "Promoting" an appspot deployment makes it the default which shows
Expand Down

0 comments on commit 67a283a

Please sign in to comment.