From 8e41bd789e43303e498558fe83ac14098d0e248b Mon Sep 17 00:00:00 2001 From: Adrien Chauve Date: Thu, 30 Nov 2023 12:08:19 +0100 Subject: [PATCH] chore: build and publish docker image --- .github/workflows/build-docker-image.yml | 64 ++++++++++++++++++++++++ .talismanrc | 2 + 2 files changed, 66 insertions(+) create mode 100644 .github/workflows/build-docker-image.yml diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml new file mode 100644 index 0000000..bfa900e --- /dev/null +++ b/.github/workflows/build-docker-image.yml @@ -0,0 +1,64 @@ +name: 📦 Build Docker Image 🥷 + +on: + push: + branches: + - "**" + - "!master" + tags: + - "**" + +concurrency: + cancel-in-progress: true + group: ${{ github.workflow }}-${{ github.event.ref }} + +jobs: + build-base-images: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Log in to the Container registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Load tag metadata variables + id: tag-vars + shell: bash + run: | + BRANCH_TAG=$(git rev-parse --abbrev-ref HEAD | sed 's/[^a-zA-Z0-9]/-/g') + if [ $BRANCH_TAG = "HEAD" ]; then + BRANCH_TAG=master + fi + echo "branch-tag=$BRANCH_TAG">>$GITHUB_OUTPUT + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v4 + with: + images: ghcr.io/${{ github.repository }}${{ inputs.destination }} + tags: | + type=schedule + type=ref,event=branch + type=ref,event=pr + type=semver,pattern=v{{version}} + type=semver,pattern=v{{major}}.{{minor}} + type=sha + type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} + type=raw,value=${{ steps.tag-vars.outputs.branch-tag }},enable=${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }} + + - name: Build and push Docker image + uses: docker/build-push-action@v4 + with: + context: "." + file: Dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} diff --git a/.talismanrc b/.talismanrc index eba37e2..7409c81 100644 --- a/.talismanrc +++ b/.talismanrc @@ -1,4 +1,6 @@ fileignoreconfig: +- filename: .github/workflows/build-docker-image.yml + checksum: f3413f12605037fcf97ccaf1991db723758223f5554f9cea2e84689944f80f17 - filename: .github/workflows/deactivate.yaml checksum: e0f0138068d1f9a11721ad38ff8b892f8dfbf19854f741fe60ae1d7f291fff22 - filename: .github/workflows/preproduction.yaml