-
Notifications
You must be signed in to change notification settings - Fork 5
136 lines (122 loc) · 4.04 KB
/
release.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
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
name: Release
on:
push:
branches:
- main
- master
jobs:
check:
name: Check versions
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/[email protected]
- name: Get Python version
id: python-version
run: |
echo "::set-output name=version::$(cat python/imjoy_rpc/VERSION | jq -r '.version')"
- name: Get Javascript version
id: js-version
run: |
echo "::set-output name=version::$(cat javascript/package.json | jq -r '.version')"
- name: Compare versions
run: |
.github/check-versions.sh "${{ steps.python-version.outputs.version }}" "${{ steps.js-version.outputs.version }}"
release-python:
name: Release Python
needs: check
runs-on: ubuntu-latest
defaults:
run:
working-directory: python
steps:
- name: Check out the repository
uses: actions/[email protected]
with:
fetch-depth: 2
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.9"
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
pip --version
- name: Install dependencies
run: |
pip install tox tox-gh-actions
pip install -r requirements_pypi.txt
- name: Test with tox
run: tox
- name: Check if there is a parent commit
id: check-parent-commit
run: |
echo "::set-output name=sha::$(git rev-parse --verify --quiet HEAD^)"
- name: Detect new version
id: check-version
if: steps.check-parent-commit.outputs.sha
uses: salsify/[email protected]
with:
create-tag: false
version-command: |
bash -o pipefail -c "cat python/imjoy_rpc/VERSION | jq -r '.version'"
- name: Push tag
id: tag-version
if: steps.check-version.outputs.previous-version != steps.check-version.outputs.current-version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ steps.check-version.outputs.current-version }}
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish package on PyPI
if: steps.tag-version.outputs.new_tag
uses: pypa/[email protected]
with:
user: __token__
password: "${{ secrets.PYPI_TOKEN }}"
packages_dir: python/dist/
- name: Publish the release notes
uses: release-drafter/[email protected]
with:
publish: "${{ steps.tag-version.outputs.new_tag != '' }}"
tag: "${{ steps.tag-version.outputs.new_tag }}"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
release-js:
name: Release Javascript
needs: release-python
runs-on: ubuntu-latest
defaults:
run:
working-directory: javascript
steps:
- uses: actions/[email protected]
with:
fetch-depth: 2
- name: Check if there is a parent commit
id: check-parent-commit
run: |
echo "::set-output name=sha::$(git rev-parse --verify --quiet HEAD^)"
- name: Detect new version
id: check-version
if: steps.check-parent-commit.outputs.sha
uses: salsify/[email protected]
with:
create-tag: false
version-command: |
bash -o pipefail -c "cat javascript/package.json | jq -r '.version'"
- uses: actions/[email protected]
with:
node-version: 15.5.0
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm run check-format
- run: npm run test
- run: npm run build
- name: Publish package on NPM
if: steps.check-version.outputs.previous-version != steps.check-version.outputs.current-version
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}