From dd75e8886a3e6279d33ae3116720c7485ca8e60c Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Mon, 25 Jul 2022 17:19:56 -0400 Subject: [PATCH] [ENG-71] Updated release job to create and update Github deployment for Jira integration (#2141) * [ENG-71] updated release job to have Github deployment * [ENG-71] Updated to use commit instead of v2. * [ENG-71] Updated to track each server deployment. Co-authored-by: Todd Martin <> --- .github/workflows/qa-deploy.yml | 32 ++++++++++++++++++++++++++++++++ .github/workflows/release.yml | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) diff --git a/.github/workflows/qa-deploy.yml b/.github/workflows/qa-deploy.yml index 02d68b6feb..82826fc141 100644 --- a/.github/workflows/qa-deploy.yml +++ b/.github/workflows/qa-deploy.yml @@ -90,6 +90,22 @@ jobs: mkdir publish + - name: Create GitHub deployment for ${{ matrix.name }} + uses: chrnorm/deployment-action@1b599fe41a0ef1f95191e7f2eec4743f2d7dfc48 + id: deployment + with: + token: '${{ secrets.GITHUB_TOKEN }}' + environment: 'Server ${{ matrix.name }} - QA' + task: 'deploy' + description: 'Deploy from ${{ env.branch_name }} branch' + + - name: Update ${{ matrix.name }} deployment status to In Progress + uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86 + with: + token: '${{ secrets.GITHUB_TOKEN }}' + state: 'in_progress' + deployment-id: ${{ steps.deployment.outputs.deployment_id }} + - name: Download latest ${{ matrix.name }} asset from ${{ env.branch_name }} uses: bitwarden/gh-actions/download-artifacts@c1fa8e09871a860862d6bbe36184b06d2c7e35a8 env: @@ -137,3 +153,19 @@ jobs: run: | az webapp start --name ${{ steps.retrieve-secrets.outputs.webapp-name }} \ --resource-group $AZURE_RESOURCE_GROUP + + - name: Update ${{ matrix.name }} deployment status to Success + if: success() + uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86 + with: + token: '${{ secrets.GITHUB_TOKEN }}' + state: 'success' + deployment-id: ${{ steps.deployment.outputs.deployment_id }} + + - name: Update ${{ matrix.name }} deployment status to Failure + if: failure() + uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86 + with: + token: '${{ secrets.GITHUB_TOKEN }}' + state: 'failure' + deployment-id: ${{ steps.deployment.outputs.deployment_id }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57d55eecde..a64390e433 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -75,6 +75,22 @@ jobs: echo "NAME_LOWER: $NAME_LOWER" echo "::set-output name=name_lower::$NAME_LOWER" + - name: Create GitHub deployment for ${{ matrix.name }} + uses: chrnorm/deployment-action@1b599fe41a0ef1f95191e7f2eec4743f2d7dfc48 + id: deployment + with: + token: '${{ secrets.GITHUB_TOKEN }}' + environment: 'Server ${{ matrix.name }} - Production' + task: 'deploy' + description: 'Deploy from ${{ needs.setup.outputs.branch-name }} branch' + + - name: Update ${{ matrix.name }} deployment status to In Progress + uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86 + with: + token: '${{ secrets.GITHUB_TOKEN }}' + state: 'in_progress' + deployment-id: ${{ steps.deployment.outputs.deployment_id }} + - name: Download latest Release ${{ matrix.name }} asset if: ${{ github.event.inputs.release_type != 'Dry Run' }} uses: bitwarden/gh-actions/download-artifacts@c1fa8e09871a860862d6bbe36184b06d2c7e35a8 @@ -139,6 +155,22 @@ jobs: fi az webapp start -n $WEBAPP_NAME -g $RESOURCE_GROUP -s staging + - name: Update ${{ matrix.name }} deployment status to Success + if: success() + uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86 + with: + token: '${{ secrets.GITHUB_TOKEN }}' + state: 'success' + deployment-id: ${{ steps.deployment.outputs.deployment_id }} + + - name: Update ${{ matrix.name }} deployment status to Failure + if: failure() + uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86 + with: + token: '${{ secrets.GITHUB_TOKEN }}' + state: 'failure' + deployment-id: ${{ steps.deployment.outputs.deployment_id }} + release-docker: name: Build Docker images