Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/github-publish-actions.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
name: Publish to PyPI

on:
push:
# This example triggers on any branch named "release"
branches:
- release
workflow_dispatch:

jobs:
publish:
Expand Down Expand Up @@ -32,7 +29,8 @@ jobs:
- name: Build package
run: python -m build

- name: Publish package to PyPI via OIDC
- name: Publish to PyPI
uses: pypa/[email protected]
# Do not specify the `pypi-token` input so that the action uses OIDC authentication.
# If you need to debug, you can set a token via secrets, but for OIDC leave it out.
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[![Build Status](https://github.com/trishullab/itp-interface/actions/workflows/github-build-actions.yaml/badge.svg)](https://github.com/trishullab/itp-interface/actions/workflows/github-build-actions.yaml)
[![PyPI version](https://img.shields.io/pypi/v/itp-interface.svg)](https://pypi.org/project/itp-interface/)
[![PyPI downloads](https://img.shields.io/pypi/dm/itp-interface.svg)](https://pypi.org/project/itp-interface/)

# itp-interface
Generic interface for hooking up to any Interactive Theorem Prover (ITP) and collecting data for training ML models for AI in formal theorem proving.

Expand Down