External deploy #1
Workflow file for this run
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
name: Build, Test and Push - Development | |
on: | |
pull_request: | |
branches: | |
- master | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build_test_push: | |
runs-on: ubuntu-latest | |
environment: development | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Setup Docker Structure Test | |
run: > | |
curl -LO | |
https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64 | |
&& chmod +x container-structure-test-linux-amd64 && sudo mv container-structure-test-linux-amd64 | |
/usr/local/bin/container-structure-test | |
- name: Set Image Tag | |
id: set_image_tag | |
run: | | |
branch_name=${{ github.head_ref || github.ref_name }} | |
tag=${{ env.TAG_PREFIX}}-${branch_name//\//-} | |
echo "$tag" | |
echo "image_tag=$tag" >> $GITHUB_OUTPUT | |
env: | |
TAG_PREFIX: dev | |
- name: Build Docker Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
load: true | |
tags: ${{ vars.ECR_REPOSITORY }}:${{ steps.set_image_tag.outputs.image_tag }} | |
- name: Test Docker Image | |
run: | | |
container-structure-test test --image ${{ vars.ECR_REPOSITORY }}:${{ steps.set_image_tag.outputs.image_tag }} --config tests/config.yaml | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
audience: sts.amazonaws.com | |
aws-region: ${{ vars.AWS_REGION }} | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
- name: Login to ECR | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ vars.ECR_REGISTRY }} | |
- name: Build and Push Docker Image | |
id: build_and_push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
# Only building for AMD64 for now | |
# platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ vars.ECR_REGISTRY }}/${{ vars.ECR_REPOSITORY }}:${{ steps.set_image_tag.outputs.image_tag }} | |
- name: Trigger Deploy Workflow | |
uses: actions/github-script@v7 | |
with: | |
debug: ${{ secrets.ACTIONS_RUNNER_DEBUG }} | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
try { | |
const result = await github.rest.actions.createWorkflowDispatch({ | |
owner: 'aodn', | |
repo: 'appdeploy', | |
workflow_id: 'deploy.yml', | |
ref: 'main', | |
inputs: { | |
app_name: 'sample-django-app', | |
environment: 'development', | |
image_tag: ${{ steps.build_and_push.outputs.digest }} | |
}, | |
}) | |
console.log(result); | |
} catch(error) { | |
console.error(error); | |
core.setFailed(error); | |
} |