Add automated GitLab mirroring #242
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
--- | |
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | |
name: Publish 📦 to Test PyPI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-to-pypi: | |
if: github.repository_owner == 'Argmaster' | |
name: Test deploy 📦 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Set up Python 3.8 | |
uses: actions/[email protected] | |
with: | |
python-version: "3.8" | |
architecture: "x64" | |
- name: Install Poetry 📜 | |
run: pip install poetry==1.8.4 | |
- name: Install base dependencies 🗄️ | |
run: poetry install --no-cache | |
- name: Bump Version for development 🔨 release | |
run: | | |
poetry version patch && | |
version=$(poetry version | awk '{ print $2 }') && | |
poetry version "$version".dev"$(date +%s)" | |
- name: Build distribution 📦 | |
run: poetry build | |
- name: Detect Version of project | |
id: project-version | |
run: | | |
echo "version=$(poetry version | awk '{ print $2 }')" >> $GITHUB_OUTPUT | |
- name: Publish distribution 📦 to Test PyPI | |
# Executed always | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
repository-url: https://test.pypi.org/legacy/ |