Skip to content

chore: Update CircleCI configuration for self-hosted testing #82

chore: Update CircleCI configuration for self-hosted testing

chore: Update CircleCI configuration for self-hosted testing #82

name: deploy
on: push
jobs:
build-n-publish:
runs-on: ubuntu-latest
environment: release
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
if: startsWith(github.event.ref, 'refs/tags')
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Build XRFeitoria
run: |
pip install wheel
pip wheel --no-deps --wheel-dir dist .
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1