Skip to content

Fix nullable & required properties in multipart bodies #137

Fix nullable & required properties in multipart bodies

Fix nullable & required properties in multipart bodies #137

Workflow file for this run

name: Release
on:
pull_request:
types: [closed]
branches: [main]
jobs:
release:
if: github.head_ref == 'release' && github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- name: Install Knope
uses: knope-dev/[email protected]
with:
version: 0.16.2
- name: Install Hatchling
run: pip install --upgrade hatchling
- name: Build
run: hatchling build
- name: Push to PyPI
uses: pypa/[email protected]
- name: Create GitHub Release
run: knope release
env:
GITHUB_TOKEN: ${{ secrets.PAT }}