Skip to content

Bump minimatch from 3.1.2 to 3.1.4 in /tests/test-apis/food-delivery-api #23

Bump minimatch from 3.1.2 to 3.1.4 in /tests/test-apis/food-delivery-api

Bump minimatch from 3.1.2 to 3.1.4 in /tests/test-apis/food-delivery-api #23

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