From ce037ebca300e08d01029de50c444149cc977087 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Wed, 20 Oct 2021 11:43:48 -0600 Subject: [PATCH] Stop pushing images from Github --- .github/workflows/build+test.yml | 57 ++------------------------------ 1 file changed, 2 insertions(+), 55 deletions(-) diff --git a/.github/workflows/build+test.yml b/.github/workflows/build+test.yml index e25dda5..b24e26f 100644 --- a/.github/workflows/build+test.yml +++ b/.github/workflows/build+test.yml @@ -1,13 +1,4 @@ -name: Build/Test/Push - -on: - push: - branches: - - v3 - - devel - - main - tags: - - 'v*.*.*' +name: Test jobs: test-mothd: @@ -17,54 +8,10 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: 1.13 + go-version: 1.17 - name: Retrieve code uses: actions/checkout@v2 - name: Test run: go test ./... - - publish: - name: Publish container images - runs-on: ubuntu-latest - steps: - - name: Retrieve code - uses: actions/checkout@v2 - - - name: Gitlab variables - id: vars - run: build/ci/gitlab-vars - - - name: Login to GitHub Packages Docker Registry - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.CR_PAT }} - - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: neale - password: ${{ secrets.DOCKER_TOKEN }} - - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - # Currently required, because buildx doesn't support auto-push from docker - - name: Set up builder - uses: docker/setup-buildx-action@v1 - id: buildx - - - name: Build and push moth image - uses: docker/build-push-action@v2 - with: - builder: ${{ steps.buildx.outputs.name }} - target: moth - file: build/package/Containerfile - push: true - platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 - tags: | - dirtbags/moth:${{ steps.vars.outputs.tag }} - ghcr.io/dirtbags/moth:${{ steps.vars.outputs.tag }}