-
Notifications
You must be signed in to change notification settings - Fork 1.7k
73 lines (57 loc) · 1.61 KB
/
release-deprecated.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
name: Release Deprecated PP
on:
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
default: '3.6.4'
jobs:
package:
name: Build and Package
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.8"
- uses: actions/cache@v4
name: Cache pip dependencies
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
python -m pip install -r requirements-test.txt
- name: Install
run: make install
- name: Lint
run: make lint
- name: Build package
run: make package version=${{ github.event.inputs.version }}
- name: Upload Pipeline Artifacts
uses: actions/upload-artifact@v4
with:
retention-days: 1
name: built-artifacts
path: dist/
publish-pypi:
name: Publish packages to PyPi
runs-on: ubuntu-24.04
needs: package
steps:
- uses: actions/download-artifact@v4
with:
name: built-artifacts
path: dist/
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
repository_url: https://pypi.org/project/pandas-profiling