Skip to content

Auto-mode: Merge accumulate/E8-F8 into main #2246

Auto-mode: Merge accumulate/E8-F8 into main

Auto-mode: Merge accumulate/E8-F8 into main #2246

Workflow file for this run

name: pypi
on:
release:
types: [published]
pull_request:
branches: [ main ]
merge_group:
branches: [ main ]
jobs:
pyping:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7.0.0
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- if: ${{ github.event.action == 'published' }}
name: Publish package
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}