-
Notifications
You must be signed in to change notification settings - Fork 211
52 lines (51 loc) · 1.42 KB
/
python-publish.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
name: Release
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:
text: ${{ github.event.head_commit.message }}
regex: '^Release ([^ ]+)'
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: cd front && npm install
- run: cd front && npm run build
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine pex
- name: Build and publish
if: ${{ steps.regex-match.outputs.match != '' && github.event_name != 'pull_request' }}
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
- name: Build pex
run: |
make build-pex
- name: Release
if: ${{ steps.regex-match.outputs.match != '' && github.event_name != 'pull_request' }}
uses: softprops/action-gh-release@v1
with:
files: |
clip_retrieval_torch.tgz
clip_retrieval.tgz
tag_name: ${{ steps.regex-match.outputs.group1 }}