Skip to content

Now with near field calculations #13

Now with near field calculations

Now with near field calculations #13

Workflow file for this run

# yamllint disable rule:truthy
---
name: Publish to PyPI
on:
release:
types: [published]
workflow_dispatch:
jobs:
build-and-publish:
runs-on: ubuntu-latest
environment: pypi-repository
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build package
run: |
python -m pip install --upgrade pip
python -m pip install build
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
attestations: true