diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c102625..56731eb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: echo "GITEA_Actor: ${{gitea.actor}}" echo "GITEA_Repository: ${{gitea.repository}}" echo "GITEA_REF_NAME: ${{gitea.ref_name}}" - echo "REGISTRY_TOKEN: ${{secrets.registry_token}}" + echo "REGISTRY_USER: ${{secrets.registry_user}}" # KANIKO - name: Kaniko build and push @@ -27,7 +27,7 @@ jobs: with: build_file: Dockerfile registry: git.coopgo.io - username: ${{gitea.actor}} + username: ${{secrets.registry_user}} password: ${{secrets.registry_token}} image: ${{gitea.repository}} tag: ${{gitea.ref_name}}