Skip to content

Commit

Permalink
Merge pull request #38 from CDJellen/station-ids-logging
Browse files Browse the repository at this point in the history
Update publishing for poetry building
  • Loading branch information
CDJellen authored Jul 28, 2024
2 parents 339d410 + 51d281c commit 605eb29
Showing 1 changed file with 30 additions and 14 deletions.
44 changes: 30 additions & 14 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Upload Python Package
name: Publish ndbc-api Python Package

on:
release:
types: [created]

jobs:
deploy:

build:
name: build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -21,11 +17,31 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
pip install build
- name: Build
run: |
python setup.py sdist
twine upload dist/*
python3 -m build
- name: Store
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/
retention-days: 1
publish-to-pypi:
name: publish
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/aq-utilities
permissions:
id-token: write
steps:
- name: Download distributions
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 605eb29

Please sign in to comment.