Generate VRChat API SDK #112
This file contains hidden or 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
| on: | |
| repository_dispatch: | |
| types: [release] | |
| workflow_dispatch: | |
| inputs: | |
| json: | |
| description: 'Passed json from repository_dispatch' | |
| required: true | |
| type: string | |
| version_postfix: | |
| description: 'Additional string to concatenate onto the existing version before release' | |
| required: false | |
| type: string | |
| default: '' | |
| name: Generate VRChat API SDK | |
| jobs: | |
| generate: | |
| runs-on: ubuntu-latest | |
| name: Generate VRChat API SDK | |
| env: | |
| ARTIFACT_NAME: "openapi.yaml" | |
| INPUT: ${{ github.event_name == 'repository_dispatch' && toJSON(github.event.client_payload) || inputs.json }} | |
| SPEC_URL: ${{ (github.event_name == 'repository_dispatch' && github.event.client_payload || fromJSON(inputs.json))['artifacts']['openapi-legacy.yaml'] }} | |
| PASSED_VERSION: ${{ (github.event_name == 'repository_dispatch' && github.event.client_payload || fromJSON(inputs.json))['version'] }} | |
| VERSION_POSTPEND: ${{ github.event_name == 'workflow_dispatch' && inputs.version_postfix || '' }} | |
| steps: | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16 | |
| - uses: actions/checkout@v2 | |
| - name: 'Cache node_modules' | |
| uses: actions/cache@v4 | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-node-v16-${{ hashFiles('**/generate.sh') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node-v16 | |
| - name: Install OpenAPI Generator CLI | |
| run: npm install @openapitools/openapi-generator-cli | |
| - name: Set OpenAPI Generator version | |
| run: ./node_modules/\@openapitools/openapi-generator-cli/main.js version-manager set 6.2.1 | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: 3.9 | |
| - name: Download Specification | |
| run: wget "${SPEC_URL}" '--output-document' "${ARTIFACT_NAME}" | |
| - name: Set version | |
| id: version | |
| run: | | |
| # Replace using bash | |
| VERSION="${PASSED_VERSION}${VERSION_POSTPEND}" | |
| CLEAN_VERSION="${VERSION/-nightly./.dev}" | |
| echo "version=${CLEAN_VERSION}" >> $GITHUB_OUTPUT | |
| - name: Apply Version Postpend | |
| if: ${{ github.event_name == 'workflow_dispatch' && inputs.version_postfix != '' }} | |
| run: yq '--inplace' ".info.version |= \"${{ steps.version.outputs.version }}\"" "${ARTIFACT_NAME}" | |
| - name: Generate SDK Client | |
| run: bash ./generate.sh "${ARTIFACT_NAME}" "${{ steps.version.outputs.version }}" | |
| - name: Delete openapi.yaml file | |
| run: unlink ${ARTIFACT_NAME} | |
| - name: Deploy SDK back into main branch | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: main | |
| folder: . | |
| commit-message: "Upgrade Python SDK to spec ${{ steps.version.outputs.version }}" | |
| - name: Install pypa/build | |
| run: python -m pip install build --user | |
| - name: Build a binary wheel and a source tarball | |
| run: python -m build --sdist --wheel --outdir dist/ . | |
| - name: Publish SDK 📦 to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| skip_existing: true | |
| password: ${{ secrets.PYPI_API_TOKEN }} |