From 0b4af9bbad345d829610c1bfd71caf8b4879711b Mon Sep 17 00:00:00 2001 From: Tim Dodd Date: Wed, 27 Sep 2023 12:19:34 -0400 Subject: [PATCH] Create build-deploy.yml --- .github/workflows/build-deploy.yml | 92 ++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 .github/workflows/build-deploy.yml diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml new file mode 100644 index 0000000..479a5a3 --- /dev/null +++ b/.github/workflows/build-deploy.yml @@ -0,0 +1,92 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +env: + PROJECT_NAME: utilplex + +jobs: + build: + name: Build and test + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Install GitVersion + uses: gittools/actions/gitversion/setup@v0.9.7 + with: + versionSpec: "5.x" + - name: Determine Version + id: gitversion + uses: gittools/actions/gitversion/execute@v0.9.7 + with: + useConfigFile: true + - name: Update version in package.json + run: | + sed -i "s/0.0.1/$GITVERSION_SEMVER/g" package.json + - name: Use Node 18.x + uses: actions/setup-node@v1 + with: + node-version: "18.x" + - name: Install dependencies + run: npm ci + - name: Build + run: ng build --configuration production + - name: Archive build + if: success() + uses: actions/upload-artifact@v1 + with: + name: deploy_dist + path: dist + - name: Archive code coverage result + if: success() + uses: actions/upload-artifact@v1 + with: + name: deploy_coverage + path: coverage + deploy: + name: Deploy to Azure + runs-on: ubuntu-latest + needs: build + steps: + - name: Checkout + uses: actions/checkout@v1 + - uses: azure/login@v1 + with: + creds: ${{ secrets.AZURE_CREDENTIALS }} + - name: Download build + uses: actions/download-artifact@v1 + with: + name: deploy_dist + - name: Delete blob storage + uses: azure/CLI@v1 + with: + inlineScript: | + az storage blob delete-batch --source '$web' --account-name $STORAGE_ACCOUNT_NAME + - name: Upload to blob storage + uses: azure/CLI@v1 + with: + inlineScript: | + az storage blob upload-batch --account-name $STORAGE_ACCOUNT_NAME --auth-mode key -d '$web' -s ./deploy_dist/$PROJECT_NAME --overwrite + - name: Change index.html content-cache-control header + uses: azure/CLI@v1 + with: + inlineScript: | + az storage blob update --account-name $STORAGE_ACCOUNT_NAME --container-name '$web' --name 'index.html' --content-cache-control 'no-cache' + - name: logout + run: | + az logout + if: always()