From 637c49d44d2b8d7267fd54a5dd54d203853e1ff4 Mon Sep 17 00:00:00 2001 From: Aliaksandr Yakutovich Date: Sat, 17 Feb 2024 12:10:44 +0100 Subject: [PATCH] Docker release image action (#15) --- .github/workflows/release-docker-image.yaml | 41 +++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/release-docker-image.yaml diff --git a/.github/workflows/release-docker-image.yaml b/.github/workflows/release-docker-image.yaml new file mode 100644 index 0000000..609fcbd --- /dev/null +++ b/.github/workflows/release-docker-image.yaml @@ -0,0 +1,41 @@ +--- + +# Build and push a Docker image to GitHub Packages + +on: [push] + +name: Build and push a Docker image to GitHub Packages + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Login to the GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}