Skip to content

Commit

Permalink
:octocat: Updated release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Dec 19, 2023
1 parent fd2674c commit e3e725c
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Asset Uploader
name: Release And Upload
on:
release:
types:
Expand All @@ -7,16 +7,31 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Build artifacts
run: poetry build
- name: Upload artifacts
- name: Upload artifacts to release
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: dist/*
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Build artifacts
run: poetry build
- name: Upload artifacts to PyPi
run: poetry publish --username __token__ --password $PYPI_TOKEN
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

0 comments on commit e3e725c

Please sign in to comment.