-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 1017 Bytes
/
az_storage.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Build & Blob storage upload
on:
workflow_dispatch: {}
push:
branches:
- development
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm ci
- run: npm run build
- uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Upload to blob storage
uses: azure/CLI@v1
env:
AZURE_STORAGE_KEY: ${{ secrets.AZURE_STORAGE_KEY }}
with:
inlineScript: |
az storage blob upload-batch --account-name vjlayouts --auth-mode key -d '$web' -s build/ --overwrite
- name: Purge CDN endpoint
uses: azure/CLI@v1
with:
inlineScript: |
az cdn endpoint purge --content-paths "/*" --profile-name "vauhtijuoksu" --name "vj-layouts" --resource-group "MC_Vauhtijuoksu-Azure-Sponsorship_vauhtijuoksu_norwayeast"
- name: logout
run: |
az logout
if: always()