Skip to content

Ignore tmp files created by ai agents #236

Ignore tmp files created by ai agents

Ignore tmp files created by ai agents #236

Workflow file for this run

name: Build distribution
on: [push, pull_request]
jobs:
release:
runs-on: "ubuntu-latest"
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.12
- name: Install build dependencies
run: python -m pip install build
- name: Build distributions
run: python -m build
- name: Publish package to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}
skip_existing: true