Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mehfuzh authored Apr 1, 2024
1 parent cb5d31f commit 17e1232
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

env:
STORAGE_ACCOUNT: 'docs'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
- run: |
npm install
npm run docs:build
- uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Upload to the storage account
uses: azure/CLI@v1
with:
inlineScript: |
az storage blob upload-batch --source ./_site --destination '$web' --account-name ${{ env.STORAGE_ACCOUNT }} --overwrite true
- name: logout
run: |
az logout

0 comments on commit 17e1232

Please sign in to comment.