From c025843405ada77362d707de7849d60795a1a492 Mon Sep 17 00:00:00 2001 From: Jeremy Likness Date: Wed, 29 Jan 2020 12:44:17 -0800 Subject: [PATCH] Create main.yml Auto-publish using actions --- .github/workflows/main.yml | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..e0989a1 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,44 @@ +name: Build and Deploy Vanilla.js +env: + OUTPUT_PATH: ${{ github.workspace }}/.output + +on: + push: + branches: + - master + +jobs: + build_website: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + + - name: Index + run: cp index.html ${{ env.OUTPUT_PATH }} + + - name: Publish website output + uses: actions/upload-artifact@v1 + with: + name: website + path: ${{ env.OUTPUT_PATH }} + + deploy_website: + runs-on: ubuntu-latest + needs: [build_website] + env: + STORAGE_NAME: jlikme + RG_NAME: jlik-me + + steps: + - uses: azure/login@v1 + with: + creds: ${{ secrets.AZURE_CREDENTIALS }} + + - name: Download website + uses: actions/download-artifact@v1 + with: + name: website + path: ${{ env.OUTPUT_PATH }} + + - name: Deploy to Azure Storage + run: az storage blob upload-batch --source ${{ env.OUTPUT_PATH }} --destination \$web/vanillajs --account-name ${STORAGE_NAME}