-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create seperate pipeline for publishing package
- Loading branch information
aidan
committed
Feb 15, 2024
1 parent
f1e816c
commit f790428
Showing
2 changed files
with
33 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |