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