generated from gmartinsribeiro/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 56
76 lines (59 loc) · 1.56 KB
/
release.yml
File metadata and controls
76 lines (59 loc) · 1.56 KB
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
name: release
on:
release:
types:
- released
jobs:
package:
name: Build and Package
runs-on: ubuntu-20.04
outputs:
version: ${{ steps.version.outputs.value }}
steps:
- uses: actions/checkout@v3
- name: Version
id: version
run: echo ::set-output name=value::${GITHUB_REF#refs/*/}
- name: Setup Python 3.7
uses: actions/setup-python@v4
with:
python-version: '3.14'
- 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: package
steps:
- uses: actions/download-artifact@v3
with:
name: built-artifacts
path: dist/
- uses: AButler/upload-release-assets@v2.0
with:
files: 'dist/*'
repo-token: ${{ secrets.ACCESS_TOKEN }}
release-tag: ${{ needs.package.outputs.version }}
publish-pypi:
name: Publish packages to PyPi
runs-on: ubuntu-20.04
needs: package
steps:
- uses: actions/download-artifact@v3
with:
name: built-artifacts
path: dist/
- uses: pypa/gh-action-pypi-publish@v1.6.4
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}