Skip to content

Removed flika.up from the package list, as it's not a package. #6

Removed flika.up from the package list, as it's not a package.

Removed flika.up from the package list, as it's not a package. #6

name: Publish to PyPi
on:
push:
branches:
- master
jobs:
publish:
name: publish
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/flika
permissions:
id-token: write
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Build package
run: |
python -m pip install -U pip build
python -m build
- name : Publish Flika to PyPI
uses: pypa/[email protected]