From 56292bc061cab654cb349da30b89e58d5f26354e Mon Sep 17 00:00:00 2001 From: "infrastructure-management[bot]" <169941871+infrastructure-management[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 14:47:48 +0000 Subject: [PATCH] Update the Docker GitHub Actions workflow file. --- .github/workflows/docker-production.yaml | 37 ++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/docker-production.yaml diff --git a/.github/workflows/docker-production.yaml b/.github/workflows/docker-production.yaml new file mode 100644 index 0000000..b0deb4f --- /dev/null +++ b/.github/workflows/docker-production.yaml @@ -0,0 +1,37 @@ +# This file was automatically generated. +# Please, do not edit it manually. + +name: Build Docker Image production + +on: + release: + types: + - released + +permissions: + id-token: write + contents: read + +jobs: + build: + environment: production + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: 'Az CLI login' + uses: azure/login@v1 + with: + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + + - name: 'Login to ACR' + run: | + az acr login --name ${{ vars.DOCKER_REGISTRY }} + + - name: 'Build & push image' + run: | + docker build -t ${{ vars.DOCKER_REGISTRY }}/background-remover:production . + docker push ${{ vars.DOCKER_REGISTRY }}/background-remover:production