Skip to content

Commit ca66aa5

Browse files
authored
Merge pull request #18 from trishullab/main
Bumped to release
2 parents ddd014f + cfd69a7 commit ca66aa5

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/github-publish-actions.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
name: Publish to PyPI
22

33
on:
4-
push:
5-
# This example triggers on any branch named "release"
6-
branches:
7-
- release
4+
workflow_dispatch:
85

96
jobs:
107
publish:
@@ -32,7 +29,8 @@ jobs:
3229
- name: Build package
3330
run: python -m build
3431

35-
- name: Publish package to PyPI via OIDC
32+
- name: Publish to PyPI
3633
uses: pypa/[email protected]
37-
# Do not specify the `pypi-token` input so that the action uses OIDC authentication.
38-
# If you need to debug, you can set a token via secrets, but for OIDC leave it out.
34+
with:
35+
user: __token__
36+
password: ${{ secrets.PYPI_API_TOKEN }}

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[![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)
2+
[![PyPI version](https://img.shields.io/pypi/v/itp-interface.svg)](https://pypi.org/project/itp-interface/)
3+
[![PyPI downloads](https://img.shields.io/pypi/dm/itp-interface.svg)](https://pypi.org/project/itp-interface/)
4+
15
# itp-interface
26
Generic interface for hooking up to any Interactive Theorem Prover (ITP) and collecting data for training ML models for AI in formal theorem proving.
37

0 commit comments

Comments
 (0)