Skip to content

fix: map to default project when not mapped (#13) #15

fix: map to default project when not mapped (#13)

fix: map to default project when not mapped (#13) #15

Workflow file for this run

name: pypi-release
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: python -m pip install --upgrade build
- name: Build
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_PUBLIC_TOKEN }}
- name: Archive
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/*