From 5dcb822d5f17152d69134483390cdcb1e6aea0df Mon Sep 17 00:00:00 2001 From: brooke Date: Mon, 17 Mar 2025 00:17:19 -0400 Subject: [PATCH] Update .forgejo/workflows/build.yml --- .forgejo/workflows/build.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 531739a..0293e91 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -6,13 +6,11 @@ on: jobs: build-latest: - runs-on: debian-node + container: + image: docker:dind steps: - uses: actions/checkout@v4 - - name: Install deps - run: curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh - - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@master @@ -20,7 +18,7 @@ jobs: - name: Login to Self-Hosted Registry uses: docker/login-action@v3 with: - registry: git.myco.systems + registry: fung.uy username: ${{ secrets.MYCO_REGISTRY_USER }} password: ${{ secrets.MYCO_PERSONAL_ACCESS_TOKEN }} @@ -33,4 +31,4 @@ jobs: platforms: linux/amd64 push: true tags: | - git.myco.systems/mycosystems/web-ci:latest + fung.uy/mycosystems/web-ci:latest