diff --git a/.github/workflows/release-docker-image.yaml b/.github/workflows/release-docker-image.yaml new file mode 100644 index 0000000..c8bcdb3 --- /dev/null +++ b/.github/workflows/release-docker-image.yaml @@ -0,0 +1,42 @@ +--- + +# 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 + platforms: linux/amd64,linux/arm64 + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}