moved a few more things around in runs block
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user