Skip to content

Updated GitHub Actions workflow #3

Updated GitHub Actions workflow

Updated GitHub Actions workflow #3

Workflow file for this run

name: Deploy to Azure Storage
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to Azure
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Sync files to Azure Blob Storage
run: |
az storage blob upload-batch --source ./ --destination '$web' --account-name resumestorageghostnetic --type application/octet-stream --pattern '*'
- name: Logout of Azure
run: az logout