Skip to content

Commit

Permalink
Merge pull request #8 from SatelliteQE/build_pypi
Browse files Browse the repository at this point in the history
Candore PyPi release GHA
  • Loading branch information
jyejare authored Oct 20, 2023
2 parents cd91a12 + d9575a4 commit 9575778
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/release_to_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# CI stages to execute against Pull Requests
name: Release to PyPi

on:
push:
tags:
- '*'

jobs:
release_to_pypi:
name: Release to PyPi
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set Up Python3
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Setup and Build
run: |
pip install -U pip wheel twine hatch
hatch build
twine check dist/*
- name: Release to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.CANDORE_PYPI_TOKEN }}
skip_existing: true

0 comments on commit 9575778

Please sign in to comment.