From e32740813f4f72321548bc08dca9da7f0afecf75 Mon Sep 17 00:00:00 2001 From: Mikayla Dobson Date: Fri, 31 Oct 2025 12:19:59 -0500 Subject: [PATCH] moved a few more things around in runs block --- .gitea/workflows/rooted/web/build/action.yaml | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.gitea/workflows/rooted/web/build/action.yaml b/.gitea/workflows/rooted/web/build/action.yaml index a23fc12..59d7add 100644 --- a/.gitea/workflows/rooted/web/build/action.yaml +++ b/.gitea/workflows/rooted/web/build/action.yaml @@ -24,7 +24,6 @@ inputs: required: false default: "https://gitea.lab.mikayla.dev" - env: MONGO_URI: $INPUT_MONGO_URI DB_NAME: $INPUT_DB_NAME @@ -33,25 +32,26 @@ env: GCP_CLIENT_SECRET: ${{ secrets.GCP_CLIENT_SECRET }} NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} -jobs: - build: - runs-on: self-hosted - using: composite - container: - image: node:latest +runs: + using: "composite" + steps: + build: + runs-on: self-hosted + container: + image: node:latest - steps: - - 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