Skip to content

Bump uuid from 9.0.1 to 14.0.0 in /sample-graphql-apis/api-security-api #71

Bump uuid from 9.0.1 to 14.0.0 in /sample-graphql-apis/api-security-api

Bump uuid from 9.0.1 to 14.0.0 in /sample-graphql-apis/api-security-api #71

Workflow file for this run

name: Release to PyPI
on:
pull_request:
types: [closed]
branches:
- main
jobs:
release:
if: startsWith(github.event.pull_request.title, '[RELEASE]') && github.event.pull_request.merged
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
- name: Publish to PyPI
env:
PYPI_TOKEN: ${{ secrets.GRAPHQLER_PYPI_REPO_SECRET }}
run: |
uv build
uv publish --token $PYPI_TOKEN