ci: rename api-client repo (#1805)

This commit is contained in:
Kyle Robbertze 2022-04-25 16:31:04 +02:00 committed by GitHub
parent e820931b43
commit 164cddca9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -18,17 +18,17 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Clone api-client repo
- name: Clone client repo
uses: actions/checkout@v3
with:
repository: "${{ github.repository_owner }}/api-client"
path: api-client-repo
repository: "${{ github.repository_owner }}/client"
path: client-repo
ssh-key: "${{ secrets.API_CLIENT_DEPLOY_KEY }}"
- name: Generate schema
run: |
make schema
cp schema.yml ../api-client-repo/schema.yml
cp schema.yml ../client-repo/schema.yml
working-directory: api
- name: Push schema changes to API clients
@ -37,4 +37,4 @@ jobs:
commit_message: "chore: update schema for ${{ github.repository }}@${{ github.sha }}"
commit_user_name: "github-actions[bot]"
commit_user_email: "github-actions[bot]@users.noreply.github.com"
repository: ./api-client-repo
repository: ./client-repo