From 1d833a0d74add989fc14fa6810142e12435baaff Mon Sep 17 00:00:00 2001 From: ChrQR Date: Sat, 27 Apr 2024 09:50:00 +0200 Subject: [PATCH] please god --- .gitea/workflows/node-build.yaml | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) 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