Skip to content

Commit

Permalink
update azure-app-service-settings.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubakimoto committed May 6, 2024
1 parent 5896d3b commit 636b2e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/azure-app-service-settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
TZ: 'Asia/Tokyo'
run: |
CURRENT_DATETIME=$(date +'%Y-%m-%d_%H:%M:%S')
SETTINGS=$(echo ${{ vars.AZURE_WEBAPP_APP_SETTINGS }} | sed "s/{0}/$CURRENT_DATETIME/")
SETTINGS=$(echo "${{ vars.AZURE_WEBAPP_APP_SETTINGS }}" | sed "s/{0}/$CURRENT_DATETIME/")
echo "SETTINGS=$SETTINGS" >> $GITHUB_ENV
- name: Az CLI Login
uses: azure/login@v2
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Azure App Service Settings
uses: Azure/appservice-settings@v1
with:
app-name: ${{ secrets.AZURE_WEBAPP_NAME }}
app-name: ${{ vars.AZURE_WEBAPP_NAME }}
slot-name: 'Production'
app-settings-json: '${{ env.SETTINGS }}'
general-settings-json: '${{ vars.AZURE_WEBAPP_GENERAL_SETTINGS }}'
Expand Down

0 comments on commit 636b2e7

Please sign in to comment.