mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-15 12:50:38 +02:00
26 lines
693 B
YAML
26 lines
693 B
YAML
name: TestPyPI
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
test_pypi:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
architecture: 'x64'
|
|
- run: pip install poetry==1.1.12
|
|
- run: >-
|
|
poetry version patch &&
|
|
version=$(poetry version | awk '{print $2}') &&
|
|
poetry version $version.dev.$(date +%s)
|
|
- run: poetry build
|
|
- name: Publish package to TestPyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
user: __token__
|
|
password: ${{ secrets.TEST_PYPI_TOKEN }}
|
|
repository_url: https://test.pypi.org/legacy/
|