Skip to content

Commit

Permalink
create seperate pipeline for publishing package
Browse files Browse the repository at this point in the history
  • Loading branch information
aidan committed Feb 15, 2024
1 parent f1e816c commit f790428
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 17 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,4 @@ jobs:
python-version: "3.10"
- name: Test with unittest
run: |
python -m unittest
- name: Install pypa/setuptools
run: |
python -m pip install wheel
- name: Extract tag name
id: tag
run: echo ::set-output name=TAG_NAME::$(echo $GITHUB_REF | cut -d / -f 3)
- name: Update version in setup.py
run: |
sed -i "s/{{VERSION_PLACEHOLDER}}/${{ steps.tag.outputs.TAG_NAME }}/g" setup.py
- name: Build a binary wheel
run: |
python setup.py sdist bdist_wheel
- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PI_PY_ACCESS_TOKEN }}
python -m unittest
32 changes: 32 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI/CD Pipeline

on:
push:
tags:
branches: [ main ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout head
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install pypa/setuptools
run: |
python -m pip install wheel
- name: Extract tag name
id: tag
run: echo ::set-output name=TAG_NAME::$(echo $GITHUB_REF_NAME)
- name: Update version in setup.py
run: |
sed -i "s/{{VERSION_PLACEHOLDER}}/${{ steps.tag.outputs.TAG_NAME }}/g" setup.py
- name: Build a binary wheel
run: |
python setup.py sdist bdist_wheel
- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish.yaml@release/v1
with:
password: ${{ secrets.PI_PY_ACCESS_TOKEN }}

0 comments on commit f790428

Please sign in to comment.