Skip to content

Commit

Permalink
Merge pull request #5 from donhui/auto-deploy
Browse files Browse the repository at this point in the history
add .github/workflows/deploy.yml
  • Loading branch information
donhui committed Feb 21, 2023
2 parents b101422 + 927bdb0 commit 68c752e
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow will be triggered when new TAG is pushed. It will create version.txt file with tag name
# Then workflow will publish a package to PyPi with version from version.txt

name: Upload Python Package

on:
push:
tags:
- '*'

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Set version
run: |
rm -f version.txt
echo ${{ github.ref_name }} > version.txt
- name: Test version.txt file
run: |
if [ ! -f version.txt ]; then
echo "version.txt does not exist"
exit 1
fi
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 68c752e

Please sign in to comment.