fix(demo): fix demo build #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to demo (azure storage) | |
on: | |
push: | |
branches: | |
- demo | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14.15.0 | |
- uses: actions/checkout@v3 | |
with: | |
ref: demo | |
- name: npm install, build | |
run: | | |
npm install | |
npm run build:demo:prod | |
# Azure CLI | |
- uses: azure/login@v1 | |
with: | |
creds: ${{ secrets.AZURE_RBAC_CREDENTIALS }} | |
# Clear storage | |
- name: Clear blob storage | |
uses: azure/CLI@v1 | |
with: | |
inlineScript: | | |
az storage blob delete-batch -s '$web' --account-name ngxadmin --debug | |
# Upload to storage | |
- name: Upload to blob storage | |
uses: azure/CLI@v1 | |
with: | |
inlineScript: | | |
az storage blob upload-batch -d '$web' -s dist --account-name ngxadmin --debug | |
# Azure logout | |
- name: logout | |
run: | | |
az logout | |
if: always() |