-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (61 loc) · 1.7 KB
/
ci_energyml_utils_pull_request.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
##
## 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