We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 553fd77 commit ae3a427Copy full SHA for ae3a427
.github/workflows/publish.yml
@@ -0,0 +1,14 @@
1
+name: Publish to PyPI
2
+on:
3
+ push:
4
+ tags:
5
+ - "v*.*.*"
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Build and publish to pypi
12
+ uses: JRubics/poetry-publish@v2.0
13
+ with:
14
+ pypi_token: ${{ secrets.PIPY_API_TOKEN }}
pyproject.toml
@@ -4,6 +4,7 @@ version = "0.1.0"
description = "A Python Package to Grade Programming Assignments Automatically."
authors = ["ryanlinjui <ryanlinjui@gmail.com>"]
readme = "README.md"
+packages = [{include = "cpGrader", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
0 commit comments