From 860f19caa280a849dce6f6b8d09ab507b7eb30cf Mon Sep 17 00:00:00 2001 From: tchardin Date: Tue, 7 May 2024 16:44:42 -0600 Subject: [PATCH] chore: add image build workflow --- .github/workflows/build.yml | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..3cc0543 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,47 @@ +name: Create and publish the docker images to github registry + +on: + push: + pull_request: + branches: + - main + +env: + REGISTRY: ghcr.io + +jobs: + build-image: + runs-on: ubuntu-latest + + + permissions: + contents: read + packages: write + + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v4 + with: + images: ${{ env.REGISTRY }}/${{ github.repository }} + + - name: Log in to the Container registry + uses: docker/login-action@v2 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max