From e68f94deca12d2952d162e4906f69137f26d7a58 Mon Sep 17 00:00:00 2001 From: Mikayla Dobson Date: Fri, 31 Oct 2025 12:22:58 -0500 Subject: [PATCH] [...[]] --- .gitea/workflows/rooted/web/build/action.yaml | 30 ++++++++----------- 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/.gitea/workflows/rooted/web/build/action.yaml b/.gitea/workflows/rooted/web/build/action.yaml index 59d7add..3d5b863 100644 --- a/.gitea/workflows/rooted/web/build/action.yaml +++ b/.gitea/workflows/rooted/web/build/action.yaml @@ -35,23 +35,17 @@ env: runs: using: "composite" steps: - build: - runs-on: self-hosted - container: - image: node:latest + - name: Checkout + uses: actions/checkout@v4 + with: + github-server-url: $GITHUB_SERVER_URL + repository: $REPOSITORY + ref: $BRANCH - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - github-server-url: $GITHUB_SERVER_URL - repository: $REPOSITORY - ref: $BRANCH + - name: Install Dependencies + run: | + cd Rooted/Rooted.Web && npm install - - name: Install Dependencies - run: | - cd Rooted/Rooted.Web && npm install - - - name: Build - run: | - cd Rooted/Rooted.Web && npm run build + - name: Build + run: | + cd Rooted/Rooted.Web && npm run build