diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 525ed2c..6cb6896 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -13,23 +13,21 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - run: env + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 - # - name: Set up Docker Buildx - # uses: docker/setup-buildx-action@v2 - # - # - name: Log in to Gitea Container Registry - # uses: docker/login-action@v3 - # with: - # password: ${{ secrets.PASSWORD }} - # username: ${{ secrets.USERNAME }} - # registry: git.thecodedom.com - # - # - name: Build and push Docker image - # uses: docker/build-push-action@v6 - # with: - # context: . - # push: true - # tags: git.thecodedom.com/dotechbro/dotechbro-website:latest + - name: Log in to Gitea Container Registry + uses: docker/login-action@v3 + with: + password: ${{ secrets.GITEA_TOKEN }} + username: ${{ github.repository_owner }} + registry: git.thecodedom.com + + - name: Build and push Docker image + uses: docker/build-push-action@v6 + with: + context: . + push: true + tags: git.thecodedom.com/smig/frontendmentor:latest