Skip to content

Add DOHQ_ARTIFACTORY_PYTHON_CFG env variable (#413) #8

Add DOHQ_ARTIFACTORY_PYTHON_CFG env variable (#413)

Add DOHQ_ARTIFACTORY_PYTHON_CFG env variable (#413) #8

Workflow file for this run

# 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@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}