diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index c467c0e..7226d77 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest if: "!startsWith(github.event.head_commit.message, 'chore: bump version')" env: - REGISTRY: git.lunarfront.tech + REGISTRY: registry.digitalocean.com/lunarfront GIT_REMOTE: git.lunarfront.tech DOCKER_HOST: tcp://localhost:2375 @@ -54,7 +54,7 @@ jobs: echo "version=$VERSION" >> $GITHUB_OUTPUT - name: Login to registry - run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login $REGISTRY -u ryan --password-stdin + run: echo "${{ secrets.DOCR_TOKEN }}" | docker login registry.digitalocean.com -u "${{ secrets.DOCR_TOKEN }}" --password-stdin - name: Build and push run: | @@ -81,4 +81,4 @@ jobs: - name: Logout if: always() - run: docker logout $REGISTRY + run: docker logout registry.digitalocean.com