Skip to content

Commit

Permalink
use "_" instead of "-" because Github doesn't allow them (#2047)
Browse files Browse the repository at this point in the history
  • Loading branch information
zkokelj authored Sep 6, 2024
1 parent 0371788 commit f6b6c73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/manual-deploy-obscuro-gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
INSTANCE_PREFIX=""
if [[ "${{ github.event.inputs.instance_type }}" != "primary" ]]; then
INSTANCE_SUFFIX="-${{ github.event.inputs.instance_type }}"
INSTANCE_PREFIX="${{ github.event.inputs.instance_type }}-"
INSTANCE_SUFFIX="_${{ github.event.inputs.instance_type }}"
INSTANCE_PREFIX="${{ github.event.inputs.instance_type }}_"
fi
echo "INSTANCE_SUFFIX=$INSTANCE_SUFFIX" >> $GITHUB_ENV
Expand Down

0 comments on commit f6b6c73

Please sign in to comment.