-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (69 loc) · 1.92 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
74
75
76
77
78
79
80
81
82
83
##
## Copyright (c) 2023-2024 Geosiris.
## SPDX-License-Identifier: Apache-2.0
##
---
name: Publish (pypiTest)
defaults:
run:
working-directory: energyml-utils
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install poetry
uses: ./.github/actions/prepare-poetry
with:
python-version: 3.9
- name: Build
run: |
poetry build
- name: Display folder
shell: bash
if: always()
run: |
echo "::debug::listing folder"
ls -R
echo `ls -R`
echo "GITHUB_WORKSPACE ${{ github.workspace }}"
echo `ls GITHUB_WORKSPACE ${{ github.workspace }}`
- name: Save build artifacts
uses: actions/upload-artifact@v4
with:
name: Build-Artifact
if-no-files-found: error
path: ${{ github.workspace }}/energyml-utils/dist
publish:
name: Publish to PyPI
needs: [build]
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@v4
with:
name: Build-Artifact
path: ${{ github.workspace }}/energyml-utils/dist
- name: Install poetry
uses: ./.github/actions/prepare-poetry
with:
python-version: 3.9
- name: Upload to PyPI TEST
run: |
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