Skip to content

Commit

Permalink
chore: create release for CD action
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanlinjui committed Aug 13, 2024
1 parent c979674 commit 7d37db0
Showing 1 changed file with 23 additions and 4 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
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/poetry-publish@v2.0
with:
pypi_token: ${{ secrets.PIPY_API_TOKEN }}
pypi_token: ${{ secrets.PIPY_API_TOKEN }}

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
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 }}

0 comments on commit 7d37db0

Please sign in to comment.