From 8454c1b52c4b90b3dd82e257db1b95cc36d04d92 Mon Sep 17 00:00:00 2001 From: ohdearaugustin Date: Sun, 14 Nov 2021 21:15:33 +0100 Subject: [PATCH 1/2] workflows/release: add docker debug --- .github/workflows/release.yml | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0605f10..05d01c92 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,3 +72,43 @@ jobs: context: . tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + + docker-debug-release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Docker meta + id: meta + uses: docker/metadata-action@v3 + with: + # list of Docker images to use as base name for tags + images: | + ${{ secrets.DOCKERHUB_USERNAME }}/headscale + ghcr.io/${{ github.repository_owner }}/headscale + tags: | + type=semver,pattern={{version}}-debug + type=semver,pattern={{major}}.{{minor}}-debug + type=semver,pattern={{major}}-debug + type=sha-debug + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Login to GHCR + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push + id: docker_build + uses: docker/build-push-action@v2 + with: + push: true + context: . + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} From c6bc9fffe96545a732ef6ac3f1870b5c2efb0958 Mon Sep 17 00:00:00 2001 From: ohdearaugustin Date: Sun, 14 Nov 2021 22:24:27 +0100 Subject: [PATCH 2/2] workflows/release: fix docker debug tags --- .github/workflows/release.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 05d01c92..ace8014b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,18 +81,21 @@ jobs: with: fetch-depth: 0 - name: Docker meta - id: meta + id: meta-debug uses: docker/metadata-action@v3 with: # list of Docker images to use as base name for tags images: | ${{ secrets.DOCKERHUB_USERNAME }}/headscale ghcr.io/${{ github.repository_owner }}/headscale + flavor: | + latest=false tags: | type=semver,pattern={{version}}-debug type=semver,pattern={{major}}.{{minor}}-debug type=semver,pattern={{major}}-debug - type=sha-debug + type=raw,value=latest-debug + type=sha,suffix=-debug - name: Login to DockerHub uses: docker/login-action@v1 with: @@ -110,5 +113,6 @@ jobs: with: push: true context: . - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + file: Dockerfile.debug + tags: ${{ steps.meta-debug.outputs.tags }} + labels: ${{ steps.meta-debug.outputs.labels }}