From f4be672de7ca078ec3e454f814e14e1a46fd7e3d Mon Sep 17 00:00:00 2001 From: xeovalyte Date: Sat, 26 Oct 2024 12:17:07 +0200 Subject: [PATCH] Fixed directory --- .gitea/workflows/deploy.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..1ea2234 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,30 @@ +name: Build and Deploy +on: [push] + +jobs: + Deploy: + runs-on: ubuntu-latest + + container: + image: catthehacker/ubuntu:act-latest + + steps: + - uses: actions/checkout@v3 + - name: Use Nodejs + uses: actions/setup-node@v3 + with: + node-version: 20 + - run: npm install + - run: npm run build + + - uses: docker/setup-qemu-action@v2 + - uses: docker/setup-buildx-action@v2 + + - uses: docker/login-action@v2 + with: + registry: gitea.xeovalyte.dev + username: ${{ secrets.USERNAME }} + password: ${{ secrets.PASSWORD }} + + - run: docker buildx build -t gitea.xeovalyte.dev/xeovalyte/bijlobke:latest --load --platform=linux/amd64 . + - run: docker push gitea.xeovalyte.dev/xeovalyte/bijlobke:latest