This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #495 from DFE-Digital/ops/push-to-test-env
Build image and push to ACR for Staging env
- Loading branch information
Showing
2 changed files
with
122 additions
and
105 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |