Skip to content

JinjaFx Server v24.6.2 #97

JinjaFx Server v24.6.2

JinjaFx Server v24.6.2 #97

Workflow file for this run

name: "PyPI"
on:
release:
types: [published]
jobs:
build-n-publish:
name: "build-n-publish"
runs-on: ubuntu-latest
steps:
- name: "checkout repository"
uses: actions/checkout@v4
- name: "setup python"
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: "install wheel"
run: "python -m pip install --user wheel"
- name: "build distribution"
run: "python setup.py sdist bdist_wheel"
- name: "publish to pypi"
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}