Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #30 from ror-community/staging
Browse files Browse the repository at this point in the history
Merge staging to main: Org status changes
  • Loading branch information
lizkrznarich authored Dec 6, 2022
2 parents e6f6004 + 1636d2e commit 64149fd
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 469 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
- "dev"
paths-ignore:
- '**/README.md'
- '**/workflows/**'
jobs:
run:
runs-on: ubuntu-latest
Expand All @@ -17,6 +16,11 @@ jobs:
- uses: actions/checkout@v2
- name: Install
run: npm ci
- name: Pull ROR Schema
run: |
git submodule update --init --recursive;
cd ror-schema;
git checkout dev
- name: Build
run: |
cp src/env.dev.ts src/env.ts;
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
- uses: actions/checkout@v2
- name: Install
run: npm ci
- name: Pull ROR Schema
run: |
git submodule update --init --recursive;
cd ror-schema;
git checkout master
- name: Build
run: |
cp src/env.prod.ts src/env.ts;
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
- "staging"
paths-ignore:
- '**/README.md'
- '**/workflows/**'
jobs:
run:
runs-on: ubuntu-latest
Expand All @@ -17,6 +16,11 @@ jobs:
- uses: actions/checkout@v2
- name: Install
run: npm ci
- name: Pull ROR Schema
run: |
git submodule update --init --recursive;
cd ror-schema;
git checkout master
- name: Build
run: |
cp src/env.staging.ts src/env.ts;
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "ror-schema"]
path = ror-schema
url = https://github.com/ror-community/ror-schema
1 change: 1 addition & 0 deletions ror-schema
Submodule ror-schema added at 112d0c
2 changes: 1 addition & 1 deletion src/jsonSchema/rorSchema/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import schema from './schema.json'
import schema from './ror_schema.json'
import data from './data.json'
import uischema from './uischema.json'
import { UISchemaElement, JsonSchema } from '@jsonforms/core'
Expand Down
1 change: 1 addition & 0 deletions src/jsonSchema/rorSchema/ror_schema.json
Loading

0 comments on commit 64149fd

Please sign in to comment.