changes.yaml missing description #175
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
name: test-concept-generation | |
on: | |
push: | |
branches: [ main ] | |
tags: [ v* ] | |
pull_request: | |
jobs: | |
generate_yaml_concepts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1' | |
bundler-cache: true | |
- name: Check out iso-10303-stepmod-wg12 repo | |
uses: actions/checkout@v3 | |
with: | |
repository: metanorma/iso-10303-stepmod-wg12 | |
token: ${{ secrets.METANORMA_CI_PAT_TOKEN }} | |
path: iso-10303-stepmod-wg12 | |
- name: Generate Folders for schemas | |
run: mkdir schemas | |
- name: Generate Folders for documents | |
run: mkdir documents | |
- name: Generate Annotated EXPRESS files | |
run: | | |
bundle exec stepmod-annotate-all \ | |
--stepmod-dir ./iso-10303-stepmod-wg12 \ | |
--schemas schemas \ | |
--documents documents | |
- name: Generate Concept YAML files | |
working-directory: iso-10303-stepmod-wg12 | |
run: | | |
bundle exec stepmod-extract-concepts \ | |
-p ./data \ | |
-i ./repository_index.xml \ | |
-o ./output-yaml |