forked from Data-Centric-AI-Community/fg-data-profiling
-
Notifications
You must be signed in to change notification settings - Fork 0
155 lines (124 loc) · 3.57 KB
/
release.yml
File metadata and controls
155 lines (124 loc) · 3.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: Release
on:
release:
types:
- released
jobs:
package:
name: Build and Package
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Version
id: version
run: echo "value=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
- name: Setup Python 3.8
uses: actions/setup-python@v4
with:
python-version: "3.8"
- uses: actions/cache@v3
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=${{ 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-22.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-22.04
needs: package
steps:
- uses: actions/download-artifact@v3
with:
name: built-artifacts
path: dist/
- uses: pypa/gh-action-pypi-publish@v1.8.6
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
docs_and_examples:
name: Documentation and Examples
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Configurating Git
run: |
git config user.email "azory@ydata.ai"
git config user.name "Azory YData Bot"
git config core.autocrlf false
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install pip dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -r requirements-test.txt
- name: Install the package
run: |
make install
- name: Update examples
run: make examples
- name: Build the documentation
run: make docs
- name: Move the changes to the gh-pages branch (release branch)
run: |
mv docs master
mkdir docs
mv master docs/master
mv examples/ master
mkdir examples
mv master examples/master
git add -f docs/master
git add -f examples/master
git stash push -- docs/master examples/master
git fetch origin gh-pages
git checkout -f gh-pages
touch .nojekyll
git add .nojekyll
rm -rf docs/master
rm -rf examples/master
git add docs/
git add examples/
git stash apply
git commit -m "[skip ci] Updating documentation and examples" -a || true
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: gh-pages
directory: .
github_token: ${{ secrets.ACCESS_TOKEN }}