Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #495 from DFE-Digital/ops/push-to-test-env
Browse files Browse the repository at this point in the history
Build image and push to ACR for Staging env
  • Loading branch information
DrizzlyOwl authored Feb 2, 2023
2 parents 0406784 + 9610a64 commit 44c8929
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 105 deletions.
105 changes: 0 additions & 105 deletions .github/workflows/build-and-push-image-development.yml

This file was deleted.

122 changes: 122 additions & 0 deletions .github/workflows/build-and-push-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
name: Deploy to environment (CIP)

on:
push:
branches:
- main
workflow_dispatch:
inputs:
environment:
type: environment
description: "Choose an environment to deploy to"
required: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

env:
DOCKER_IMAGE: acatran-app

jobs:
set-env:
name: Determine environment
runs-on: ubuntu-22.04
outputs:
environment: ${{ steps.var.outputs.environment }}
branch: ${{ steps.var.outputs.branch }}
release: ${{ steps.var.outputs.release }}
steps:
- id: var
run: |
GIT_REF=${{ github.ref }}
GIT_BRANCH=${GIT_REF##*/}
INPUT=${{ github.event.inputs.environment }}
ENVIRONMENT=${INPUT:-"dev"}
RELEASE=${ENVIRONMENT,,}-`date +%Y-%m-%d`.${{ github.run_number }}
echo "environment=${ENVIRONMENT,,}" >> $GITHUB_OUTPUT
echo "branch=$GIT_BRANCH" >> $GITHUB_OUTPUT
echo "release=${RELEASE}" >> $GITHUB_OUTPUT
build-and-push-image:
name: Build and push to ACR
needs: set-env
runs-on: ubuntu-22.04
environment: ${{ needs.set-env.outputs.environment }}
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}

- name: Azure Container Registry login
uses: docker/login-action@v2
with:
username: ${{ secrets.CIP_ACR_CLIENTID }}
password: ${{ secrets.CIP_ACR_SECRET }}
registry: ${{ secrets.CIP_ACR_URL }}

- name: Build and push docker image
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile.gpaas-azure-migration
tags: |
${{ secrets.CIP_ACR_URL }}/${{ env.DOCKER_IMAGE }}:${{ needs.set-env.outputs.branch }}
${{ secrets.CIP_ACR_URL }}/${{ env.DOCKER_IMAGE }}:${{ needs.set-env.outputs.release }}
${{ secrets.CIP_ACR_URL }}/${{ env.DOCKER_IMAGE }}:latest
push: true

create-tag:
name: Tag and release
needs: set-env
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}

- name: Create tag
run: |
git tag ${{ needs.set-env.outputs.release }}
git push origin ${{ needs.set-env.outputs.release }}
- name: Create release
uses: "actions/github-script@v6"
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
script: |
try {
await github.rest.repos.createRelease({
draft: ${{ needs.set-env.outputs.environment == 'staging' }},
generate_release_notes: true,
name: "${{ needs.set-env.outputs.release }}",
owner: context.repo.owner,
prerelease: ${{ needs.set-env.outputs.environment == 'staging' }},
repo: context.repo.repo,
tag_name: "${{ needs.set-env.outputs.release }}",
});
} catch (error) {
core.setFailed(error.message);
}
deploy-image:
name: Deploy to ${{ needs.set-env.outputs.environment }}
needs: [ build-and-push-image, set-env ]
runs-on: ubuntu-22.04
environment: ${{ needs.set-env.outputs.environment }}
steps:
- name: Azure login with ACA credentials
uses: azure/login@v1
with:
creds: ${{ secrets.CIP_ACA_CREDENTIALS }}

- name: Update Azure Container Apps Revision
uses: azure/CLI@v1
with:
azcliversion: 2.40.0
inlineScript: |
az config set extension.use_dynamic_install=yes_without_prompt
az containerapp update \
--name ${{ secrets.CIP_ACA_CONTAINERAPP_NAME }} \
--resource-group ${{ secrets.CIP_ACA_RESOURCE_GROUP }} \
--image ${{ secrets.CIP_ACR_URL }}/${{ env.DOCKER_IMAGE }}:${{ needs.set-env.outputs.release }} \
--output none

0 comments on commit 44c8929

Please sign in to comment.