feat: enable setting of tenant id on consultant creation #92
Workflow file for this run
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: Push Admin API documentation | |
on: | |
push: | |
paths: | |
- "api/useradminservice.yaml" | |
branches-ignore: | |
- "master" | |
- "develop" | |
jobs: | |
documentation: | |
name: Pushes changes to Admin API | |
runs-on: ubuntu-latest | |
timeout-minutes: 40 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup JVM | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11.0.10 | |
java-package: jdk | |
architecture: x64 | |
- name: Caching maven dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Maven generate sources | |
run: mvn generate-sources | |
- name: Push Admin API to documentation | |
uses: andstor/copycat-action@v3 | |
with: | |
personal_token: ${{ secrets.GH_PACKAGE_RELEASE_TOKEN }} | |
src_path: ../target/generated-sources/markdown/userservice | |
dst_path: docs/backend/admin/userservice | |
dst_owner: ${{ github.repository_owner }} | |
dst_repo_name: ${{ secrets.DOCUMENTATION_REPO }} | |
dst_branch: adminapi | |
clean: true | |
commit_message: "docs: updated user service admin api description" | |
- name: Maven clean | |
run: mvn -B -Pprod clean |