From 4e86430539bd7c139733a57074e674183f07fdf7 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Sat, 28 Sep 2024 15:50:33 +0200 Subject: [PATCH] Changed build step to run in container --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index c439e3f..05f1cfa 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -10,7 +10,7 @@ on: jobs: build: - runs-on: host + runs-on: ubuntu-latest steps: - name: Check out repository code @@ -20,7 +20,7 @@ jobs: - name: Build run: npm exec -- pnpm build - name: Upload artifacts - uses: actions/upload-artifact@v3 # Deprecated but v4+ is not supported for GHES + uses: actions/upload-artifact@v3 # Deprecated and v4+ is not supported for GHES with: name: dist path: dist