From ab84de269f7b59608f6927888536bef9ad29135e Mon Sep 17 00:00:00 2001 From: Michael Meyers Date: Tue, 14 Dec 2021 15:55:26 -0500 Subject: [PATCH] Remove buildx, set env variable (#12) --- .github/workflows/autorelease.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autorelease.yml b/.github/workflows/autorelease.yml index 0f53aec..991032c 100644 --- a/.github/workflows/autorelease.yml +++ b/.github/workflows/autorelease.yml @@ -54,6 +54,7 @@ jobs: needs: github-release runs-on: ubuntu-latest env: + REGISTRY: ghcr.io IMAGE_NAME: ${{github.repository}} permissions: contents: read @@ -63,13 +64,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Log in to the Container registry uses: docker/login-action@v1.0.0 with: - registry: ghcr.io + registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }}