From ca83825610330d75eb097e89a44670838a406094 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 25 Jun 2024 12:48:27 +0100 Subject: [PATCH] chore: Use docker hub instead --- .github/workflows/build.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 412e0d9..96db40b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,6 @@ on: branches: [ "update/rewrite" ] env: - REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} jobs: @@ -15,9 +14,6 @@ jobs: contents: read packages: write - outputs: - output1: ${{ steps.step1.outputs }} - steps: # Checkout the repo files - name: Checkout repository @@ -69,12 +65,11 @@ jobs: # Docker time! - - name: Log in to the Container registry + - name: Log in to docker hub uses: docker/login-action@v2.1.0 with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + username: ${{ secrets.DOCKER_USER }} + password: ${{ secrets.DOCKER_TOKEN }} - name: Extract metadata for Docker id: meta