moved a few more things around in runs block

This commit is contained in:
2025-10-31 12:19:59 -05:00
parent a24d75021f
commit e32740813f

View File

@@ -24,7 +24,6 @@ inputs:
required: false required: false
default: "https://gitea.lab.mikayla.dev" default: "https://gitea.lab.mikayla.dev"
env: env:
MONGO_URI: $INPUT_MONGO_URI MONGO_URI: $INPUT_MONGO_URI
DB_NAME: $INPUT_DB_NAME DB_NAME: $INPUT_DB_NAME
@@ -33,25 +32,26 @@ env:
GCP_CLIENT_SECRET: ${{ secrets.GCP_CLIENT_SECRET }} GCP_CLIENT_SECRET: ${{ secrets.GCP_CLIENT_SECRET }}
NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }}
jobs: runs:
build: using: "composite"
runs-on: self-hosted steps:
using: composite build:
container: runs-on: self-hosted
image: node:latest container:
image: node:latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
github-server-url: $GITHUB_SERVER_URL github-server-url: $GITHUB_SERVER_URL
repository: $REPOSITORY repository: $REPOSITORY
ref: $BRANCH ref: $BRANCH
- name: Install Dependencies - name: Install Dependencies
run: | run: |
cd Rooted/Rooted.Web && npm install cd Rooted/Rooted.Web && npm install
- name: Build - name: Build
run: | run: |
cd Rooted/Rooted.Web && npm run build cd Rooted/Rooted.Web && npm run build