generated from ydataai/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 55
88 lines (69 loc) · 1.87 KB
/
prerelease.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
84
85
86
87
88
name: Prerelease
on:
release:
types:
- prereleased
jobs:
prepare:
name: Prepare
runs-on: ubuntu-20.04
outputs:
version: ${{ steps.version.outputs.value }}
steps:
- name: Version
id: version
run: echo ::set-output name=value::`echo ${{ github.ref }} | sed -n -E 's/refs\/tags\/build\/([0-9]+.[0-9]+.[0-9]+)\/([[:alnum:]])/\1.\2/p'`
package:
name: Build and Package
runs-on: ubuntu-20.04
needs: prepare
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.7
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install wheel
- name: Build package
run: make package PYTHON=python version=${{ steps.version.outputs.value }}
- name: Upload Pipeline Artifacts
uses: actions/upload-artifact@v3
with:
retention-days: 1
name: built-artifacts
path: dist/
upload-assets:
name: Upload Assets to Release
runs-on: ubuntu-20.04
needs:
- prepare
- package
steps:
- uses: actions/download-artifact@v3
with:
name: built-artifacts
path: dist/
- uses: AButler/[email protected]
with:
files: 'dist/*'
repo-token: ${{ secrets.ACCESS_TOKEN }}
release-tag: ${{ needs.package.outputs.version }}
publish-private-pypi:
name: Publish packages to PyPi
runs-on: ubuntu-20.04
needs:
- prepare
- package
steps:
- uses: actions/download-artifact@v3
with:
name: built-artifacts
path: dist/
- uses: pypa/[email protected]
with:
user: ${{ secrets.PRIVATE_PYPI_USERNAME }}
password: ${{ secrets.PRIVATE_PYPI_PASSWORD }}
repository_url: ${{ secrets.PRIVATE_PYPI_URL }}