Skip to content

Commit

Permalink
Fix CD pipeline config (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMacocian authored Nov 25, 2023
1 parent 06bf76e commit 6fa6e3d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [ master ]
paths:
- "GuildWarsPartySearch/**"
- ".github/workflows/docker-deploy.yaml"

jobs:
build:
Expand All @@ -30,8 +31,8 @@ jobs:
$content = Get-Content Config.Release.json
$content = $content.Replace("[APIKEY]", "${{ secrets.APIKEY }}")
$content = $content.Replace("[AZURE_TABLESTORAGE_CONNECTIONSTRING]", "${{ secrets.AZURE_TABLESTORAGE_CONNECTIONSTRING }}")
Set-Content -Path Config.json -Value $content
Write-Host "Placeholder replaced successfully in Config.json"
Set-Content -Path Config.Release.json -Value $content
Write-Host "Placeholder replaced successfully in Config.Release.json"
- name: Build and push Docker image
run: |
Expand Down

0 comments on commit 6fa6e3d

Please sign in to comment.