From f2eddffd9f31d5be6eff9a12e03848f150bd9be6 Mon Sep 17 00:00:00 2001 From: Benjamin Webb Date: Thu, 20 Jul 2023 10:07:17 -0400 Subject: [PATCH] Create ghcr.yml --- .github/workflows/ghcr.yml | 72 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/workflows/ghcr.yml diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml new file mode 100644 index 0000000..4c4c65c --- /dev/null +++ b/.github/workflows/ghcr.yml @@ -0,0 +1,72 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: publish image to ghcr.io + +on: + push: + branches: + - master + - ghcr + release: + types: [published] + +env: + REGISTRY: ghcr.io + +jobs: + # Push image to GitHub Packages. + # See also https://docs.docker.com/docker-hub/builds/ + push: + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + strategy: + matrix: + image: + - yourls-mysql + - yourls-action + + steps: + - name: Checkout branch + uses: actions/checkout@v2 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 + + - name: Docker meta + id: meta + uses: docker/metadata-action@v4 + with: + images: | + ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ matrix.image }} + tags: | + type=raw,value=latest,enable={{is_default_branch}} + type=raw,value=test + type=semver,pattern={{version}} + + - name: Build and push + uses: docker/build-push-action@v2.7.0 + with: + context: ./${{ matrix.image }} + file: ./${{ matrix.image }}/Dockerfile + cache-from: type=gha + cache-to: type=gha,mode=max + platforms: linux/arm64, linux/amd64 + push: false + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}