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