From f840ed054052578794dfbf74081f30f708f52db0 Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Thu, 28 Mar 2024 19:57:24 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 97f3c304..22b9d40e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,14 +32,13 @@ jobs: - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: - registry: registry.steffenillium.de/v2/ - username: ${{ secrets.DOCKER_USER }} - password: ${{ secrets.DOCKER_PASS }} + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v5 with: context: . platforms: linux/amd64 # ,linux/arm64 push: true - tags: registry.steffenillium.de/steffen/website - + tags: ghcr.io/illiumst/website