Skip to content
##
## Copyright (c) 2023-2024 Geosiris.
## SPDX-License-Identifier: Apache-2.0
##
---
name: Publish (pypiTest)
on:
push:
branches:
- main
pull_request:
jobs:
build:
working_directory: energyml-utils
name: Build distribution
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install poetry
uses: .github/actions/prepare-poetry
with:
python-version: 3.9
- name: Build
run: |
poetry install
poetry self add "poetry-dynamic-versioning[plugin]"
poetry build
- name: Save build artifacts
uses: actions/upload-artifact@v2
with:
name: dist-artifact
path: dist/
publish:
working_directory: energyml-utils
name: Publish to PyPI
needs: [build, test]
runs-on: ubuntu-latest
steps:
# Retrieve the code and GIT history so that poetry-dynamic-versioning knows which version to upload
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get build artifacts
uses: actions/download-artifact@v3
with:
name: dist-artifact
path: dist/
- name: Install poetry
uses: .github/actions/prepare-poetry
with:
python-version: 3.9
- name: Upload to PyPI TEST
run: |
poetry self add "poetry-dynamic-versioning[plugin]"
poetry config repositories.test-pypi https://test.pypi.org/legacy/
poetry config pypi-token.test-pypi ${{ secrets.POETRY_PYPI_TEST_TOKEN_VALUE }}
poetry publish --repository test-pypi