mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
chore: add azure-cli deploy action workflow
This commit is contained in:
parent
bb868ad600
commit
816a12080d
1 changed files with 41 additions and 0 deletions
41
.github/workflows/azureCliDeploy.yml
vendored
Normal file
41
.github/workflows/azureCliDeploy.yml
vendored
Normal 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue