Skip to content

Commit

Permalink
Create publish-to-pypi-token.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
forestbat authored Nov 8, 2023
1 parent ccaf9c4 commit 4f33f70
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/publish-to-pypi-token.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Publish Python distributions to PyPI

on:
push:
workflow_dispatch:

jobs:
build-n-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9

- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.HYDRO_XAJ_TOKEN }}

0 comments on commit 4f33f70

Please sign in to comment.