Skip to content

update clients

update clients #64

Workflow file for this run

name: update clients
on:
workflow_dispatch:
inputs:
title:
description: "Title for PR's"
required: true
jobs:
update-js-client:
runs-on: ubuntu-latest
steps:
- name: Checkout Specification Repo
uses: actions/checkout@v2
with:
path: 'FaceSDK-web-openapi'
- name: Checkout JS Client Repo
uses: actions/checkout@v2
with:
repository: 'regulaforensics/FaceSDK-web-js-client'
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
path: 'js-client'
- name: Update Model According To Specification
working-directory: js-client
run: |
npm install
./update-models.sh
- name: Push Changes Back To Client Repo
working-directory: js-client
run: |
git checkout -b ${GITHUB_SHA::8}
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add --all
git commit -m "${{ github.event.inputs.title }}" -a
git push --set-upstream origin ${GITHUB_SHA::8}
gh pr create --fill --draft
env:
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
update-java-client:
runs-on: ubuntu-latest
steps:
- name: Specify Java Version
uses: actions/setup-java@v1
with:
java-version: 11
java-package: jdk
- name: Checkout Specification Repo
uses: actions/checkout@v2
with:
path: 'FaceSDK-web-openapi'
- name: Checkout Java Client Repo
uses: actions/checkout@v2
with:
repository: 'regulaforensics/FaceSDK-web-java-client'
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
path: 'java-client'
- name: Update Model According To Specification
working-directory: java-client
run: |
./update-models.sh
- name: Push Changes Back To Client Repo
working-directory: java-client
run: |
git checkout -b ${GITHUB_SHA::8}
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add --all
git commit -m "${{ github.event.inputs.title }}" -a
git push --set-upstream origin ${GITHUB_SHA::8}
gh pr create --fill --draft
env:
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
update-python-client:
runs-on: ubuntu-latest
steps:
- name: Checkout Specification Repo
uses: actions/checkout@v2
with:
path: 'FaceSDK-web-openapi'
- name: Checkout Python Client Repo
uses: actions/checkout@v2
with:
repository: 'regulaforensics/FaceSDK-web-python-client'
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
path: 'python-client'
- name: Update Model According To Specification
working-directory: python-client
run: |
./update-models.sh
- name: Push Changes Back To Client Repo
working-directory: python-client
run: |
git checkout -b ${GITHUB_SHA::8}
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add --all
git commit -m "${{ github.event.inputs.title }}" -a
git push --set-upstream origin ${GITHUB_SHA::8}
gh pr create --fill --draft
env:
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
update-csharp-client:
runs-on: ubuntu-latest
steps:
- name: Specify Dotnet Version
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Checkout Specification Repo
uses: actions/checkout@v2
with:
path: 'FaceSDK-web-openapi'
- name: Checkout CSharp Client Repo
uses: actions/checkout@v2
with:
repository: 'regulaforensics/FaceSDK-web-csharp-client'
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
path: 'csharp-client'
- name: Update Model According To Specification
working-directory: csharp-client
run: |
./update-models.sh
- name: Push Changes Back To Client Repo
working-directory: csharp-client
run: |
git checkout -b ${GITHUB_SHA::8}
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git checkout src/Regula.FaceSDK.WebClient/Api/SearchApi.cs
git add --all
git commit -m "${{ github.event.inputs.title }}" -a
git push --set-upstream origin ${GITHUB_SHA::8}
gh pr create --fill --draft
env:
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}