diff --git a/.gitea/workflows/node-build.yaml b/.gitea/workflows/node-build.yaml index df3ef47..51edad1 100644 --- a/.gitea/workflows/node-build.yaml +++ b/.gitea/workflows/node-build.yaml @@ -15,6 +15,23 @@ jobs: - run: npm run build --production --if-present build_image: needs: build_app - runs: - using: 'docker' - image: 'Dockerfile' \ No newline at end of file + runs-on: ubuntu-latest + 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 + # uses: docker/login-action@v3 + # with: + # username: ${{ secrets.DOCKERHUB_USERNAME }} + # password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v5 + with: + push: true + tags: gitea.rannes.dev/christian/my-portfolio:latest \ No newline at end of file