-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from nf-osi/allaway-patch-5
Update nf_research_tools.rdb.model.csv
- Loading branch information
Showing
2 changed files
with
1,030 additions
and
417 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,35 +15,36 @@ env: | |
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Install System Dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y python3.10 libcurl4-openssl-dev | ||
sudo apt-get install -y pip python3.10-venv libcurl4-openssl-dev | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | ||
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository | ||
|
||
- name: Install schematic and convert schema | ||
shell: bash | ||
run: | | ||
python3 --version | ||
python3 -m venv .venv | ||
chmod 755 .venv/bin/activate | ||
source .venv/bin/activate | ||
pip3 install schematicpy | ||
schematic schema convert $schema_filename -o nf-research-tools.jsonld | ||
- name: Commit files | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "nf-osi[bot]" | ||
git commit -m "Add changes" -a | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
|
Oops, something went wrong.