diff --git a/.gitea/workflows/gitea.yaml b/.gitea/workflows/gitea.yaml index 62604dc..07699f8 100644 --- a/.gitea/workflows/gitea.yaml +++ b/.gitea/workflows/gitea.yaml @@ -20,9 +20,21 @@ jobs: run: | echo "Building application." npm run build --cache .npm --prefer-offline - - name: Build and push + docker: + runs-on: node + steps: + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Login to Docker Hub + run: docker login https://git.tomcode.io/ -u thomas -p N0sflgdh@ + - + name: Build and push uses: docker/build-push-action@v6 with: - context: "{{defaultContext}}:mysubdir" push: true - tags: thomas/tomcode/landing:latest \ No newline at end of file + tags: user/app:latest \ No newline at end of file