Skip to content

Commit

Permalink
Merge pull request #2 from ryanlinjui/0.1.x
Browse files Browse the repository at this point in the history
chore: init CD action
  • Loading branch information
ryanlinjui authored Aug 13, 2024
2 parents 83948c1 + 8f9373f commit ad4f940
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
27 changes: 23 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,32 @@ name: Publish to PyPI
on:
push:
tags:
- "v*.*.*"
- '*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Build and publish to pypi
- name: Checkout Code Repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Build and Publish to PyPI
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PIPY_API_TOKEN }}
pypi_token: ${{ secrets.PIPY_API_TOKEN }}
poetry_publish_options: "--skip-existing"

- name: Create Release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
This is a release for the version ${{ github.ref }}.
PyPI package: https://pypi.org/project/${{ github.repository }}/${{ github.ref }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ cp-hw/
.venv/
poetry.lock

# build files
dist/

# log files
*.log

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<div align="left">

[![Test](https://github.com/ryanlinjui/cpGrader/actions/workflows/tests.yml/badge.svg?branch=main&event=push)](https://github.com/ryanlinjui/cpGrader/actions?query=event%3Apush+branch%3Amain)
[![PyPI](https://img.shields.io/pypi/v/cpGrader.svg)](https://pypi.org/project/cpGrader)
[![python-version](https://img.shields.io/pypi/pyversions/cpGrader.svg)](https://pypi.org/project/cpGrader)

</div>

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cpGrader"
version = "0.1.0"
version = "0.1.2"
description = "A Python Package to Grade Programming Assignments Automatically."
authors = ["ryanlinjui <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit ad4f940

Please sign in to comment.