Skip to content

Commit

Permalink
I'm a dawg
Browse files Browse the repository at this point in the history
  • Loading branch information
byt3bl33d3r committed Nov 23, 2023
1 parent 05b780c commit de477e0
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/python-publish-test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Upload Package to PyPi Testing

on:
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Upload Package to PyPi

on:
release:
types: [published]
workflow_dispatch:

permissions:
contents: read

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipx
pipx install poetry
- name: Build and publish package
run: |
poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
poetry config repositories.testpypi https://pypi.org/legacy/
poetry publish -r pypi --build

0 comments on commit de477e0

Please sign in to comment.