diff --git a/.github/workflows/azureDeploy.yml b/.github/workflows/azureDeploy.yml new file mode 100644 index 00000000..b76a7fa0 --- /dev/null +++ b/.github/workflows/azureDeploy.yml @@ -0,0 +1,39 @@ +name: Ngx-Admin Blob storage CI + +on: + push: + branches: + - azureCliDeploy-demo + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js 10.x + uses: actions/setup-node@v1 + with: + node-version: '10.x' + - uses: actions/checkout@v2 + with: + ref: azureCliDeploy-demo + - name: npm install, build + run: | + npm install + npm run build:demo:prod + - 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 -s -d '$web'. + + # Azure logout + - name: logout + run: | + az logout + if: always()