From 667402dc0706091c75c439cada3e6ef5210448dc Mon Sep 17 00:00:00 2001 From: "Seraphim R. Pardee" Date: Fri, 20 Sep 2024 13:42:50 -0400 Subject: [PATCH] I think this order makes a difference. --- .gitea/workflows/build.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 7887804..a4da732 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -6,19 +6,19 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: login to container registry - uses: docker/login-action@v3 - with: - registry: 10.0.0.103:3000 - username: ${{ gitea.actor }} - password: ${{ secrets.GITEA_TOKEN }} - name: docker buildx setup uses: docker/setup-buildx-action@v3 with: config-inline: | [registry."10.0.0.103:3000"] http = true - insecure = true + insecure = true + - name: login to container registry + uses: docker/login-action@v3 + with: + registry: 10.0.0.103:3000 + username: ${{ gitea.actor }} + password: ${{ secrets.GITEA_TOKEN }} - name: checkout code uses: actions/checkout@v4 - name: build and push to registry