chore: add azure-cli deploy action workflow

This commit is contained in:
DESKTOP-Q2JDODV\Admin 2021-06-23 13:47:38 +03:00
parent bb868ad600
commit 816a12080d

41
.github/workflows/azureCliDeploy.yml vendored Normal file
View file

@ -0,0 +1,41 @@
name: Ngx-Admin Blob storage CI
on:
push:
branches:
- demo
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2l
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: '10.x'
- uses: actions/checkout@v2ll
with:
ref: demo
- name: npm install, build
run: |
npm install
npm run build:demo:prod
# Azure CLI Upload to storage
- uses: actions/checkout@v2
- uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_RBAC_CREDENTIALS }}
- name: Upload to blob storage
uses: azure/CLI@v1
with:
azcliversion: 2.0.72
inlineScript: |
az storage blob upload-batch --account-name ngxadmin -s dist/ -d '$web'.
# Azure logout
- name: logout
run: |
az logout
if: always()