Update azure env var AZURE_STORAGE_ACCOUNT_CONTAINER to AZURE_STORAG… #6
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_push_deployment_env_image | |
on: | |
push: | |
branches: | |
- main | |
# Setting this enables manually triggering workflow in the GitHub UI | |
# see https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow | |
workflow_dispatch: {} | |
permissions: read-all | |
# Build and push the deployment env image. | |
jobs: | |
build_deployment_env: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: build-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
name: Build deployment env | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- id: file_changes | |
uses: tj-actions/changed-files@v45 | |
with: | |
json: 'true' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Run build | |
id: build_and_push_deployment_env | |
env: | |
DOCKER_BUILDKIT: 1 | |
PLATFORM: 'linux/amd64' | |
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }} | |
if: contains(toJSON(steps.file_changes.outputs.all_changed_files), 'cloud/aws/deployment/') | |
run: | | |
cd $GITHUB_WORKSPACE/cloud/aws/deployment | |
./build-deployment |