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 e4d119f commit 5896d3b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/azure-app-service-settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@ jobs:
runs-on: ubuntu-latest
environment: Production
steps:
- name: Dump context
run: echo "${{ toJSON(github) }}"
- name: Set current datetime as env variable
env:
TZ: 'Asia/Tokyo'
run: echo "CURRENT_DATETIME=$(date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_ENV
run: |
CURRENT_DATETIME=$(date +'%Y-%m-%d_%H:%M:%S')
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
with:
Expand All @@ -28,7 +33,7 @@ jobs:
with:
app-name: ${{ secrets.AZURE_WEBAPP_NAME }}
slot-name: 'Production'
app-settings-json: "${{ format(vars.AZURE_WEBAPP_APP_SETTINGS, 'env.CURRENT_DATETIME') }}"
app-settings-json: '${{ env.SETTINGS }}'
general-settings-json: '${{ vars.AZURE_WEBAPP_GENERAL_SETTINGS }}'
- name: Az CLI Logout
run: az logout

0 comments on commit 5896d3b

Please sign in to comment.