Skip to content

docker file update for npm deps #46

docker file update for npm deps

docker file update for npm deps #46

Workflow file for this run

name: Deploy to Azure
on:
push:
branches:
- '**'
jobs:
deploy:
name: Deployment
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set the app name
run: echo "AZURE_APP_NAME=${REPO_NAME,,}" >>${GITHUB_ENV}
env:
REPO_NAME: '${{ github.event.repository.name }}'
- name: Log in to Azure CLI
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Deploy to Azure
run: |
az containerapp up -n $AZURE_APP_NAME --ingress external --source .