Skip to content

ci: bump version number #133

ci: bump version number

ci: bump version number #133

Workflow file for this run

name: Publish API client derived from spec
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-ALPHA.[0-9]+'
permissions:
contents: read
packages: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: OpenAPI Generator Action
uses: kpurdon/openapi-generator-action@v0.0.3
with:
args: "generate -i openapi.yaml -g typescript-fetch -o ./client"
- name: Assign client ownership to runner
run: sudo chown -R runner client
- id: get_version
uses: battila7/get-version-action@v2.2.1
- name: Generate package.json
env:
TAG_VERSION: ${{ steps.get_version.outputs.version-without-v }}
working-directory: ./client
run: |
cat <<EOF > package.json
{
"name": "@polito/api-client",
"version": "$TAG_VERSION",
"repository":"https://github.com/polito/api-spec"
}
EOF
cat package.json
echo -e "// @ts-nocheck\n$(cat runtime.ts)" > runtime.ts
# Fix for invalid type generated by GeoJSON spec reference
echo -e "// @ts-nocheck\n$(cat models/FeatureAllOfId.ts)" > models/FeatureAllOfId.ts
cat <<EOF > README.md
# PoliTO API Client
Autogenerated typescript-fetch client for the API of PoliTO, based on its [OpenAPI specification](https://github.com/polito/api-spec).
EOF
- name: Setup Node.js environment
uses: actions/setup-node@v3.4.1
with:
node-version: 16
registry-url: 'https://npm.pkg.github.com'
- run: npm publish
working-directory: ./client
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}