Skip to content

Commit

Permalink
Fix space
Browse files Browse the repository at this point in the history
  • Loading branch information
n3wt0n committed Oct 17, 2023
1 parent 7a3c8a3 commit a444447
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ring-deploy-api-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- run: echo "API - ${{ inputs.tenant-name }}"
name: Deploy API - ${{ env.app-suffix }}
env:
app-suffix: ${{ format('XXX-webapi{0}', inputs.tenant-name != 'Shared' && format('-{0}', inputs.tenant-name)) || '' }}
app-suffix: ${{ format('XXX-webapi{0}', inputs.tenant-name != 'Shared' && format('-{0}', inputs.tenant-name)) || ' ' }}

- run: echo "CDN - ${{ inputs.tenant-name }}"
name: Deploy CDN Api - ${{ env.app-suffix }}
env:
app-suffix: ${{ format('XXX-cdn{0}', inputs.tenant-name != 'Shared' && format('-{0}', inputs.tenant-name)) || '' }}
app-suffix: ${{ format('XXX-cdn{0}', inputs.tenant-name != 'Shared' && format('-{0}', inputs.tenant-name)) || ' ' }}


0 comments on commit a444447

Please sign in to comment.