-
Notifications
You must be signed in to change notification settings - Fork 41
83 lines (68 loc) · 2.58 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
name: release package to serverless-hub
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install requests
- name: NPM install
run: |
npm install --production
- name: Add publish file
run: |
wget https://serverless-registry.oss-cn-hangzhou.aliyuncs.com/publish-file/python3/hub-publish.py
ls
- name: Publish package
env:
publish_token: ${{ secrets.alibaba_registry_publish_token }}
release_body: ${{ github.event.release.body }}
release_name: ${{ github.event.release.name }}
run: |
if [[ ! -n "${release_body}" ]]; then
TAG=$(git describe --tags --always | sed 's/^v//')
echo "release ${TAG}"
echo "release fc-stable-diffusion"
sed -i "s/Version: .*/Version: ${TAG}/" publish.yaml
python hub-publish.py
echo "release fc-stable-diffusion-plus"
mv publish-plus.yaml publish.yaml
mv readme-plus.md readme.md
sed -i "s/Version: .*/Version: ${TAG}/" publish.yaml
python hub-publish.py
echo "release fc-stable-diffusion-api"
mv publish-api.yaml publish.yaml
mv readme-api.md readme.md
sed -i "s/Version: .*/Version: ${TAG}/" publish.yaml
python hub-publish.py
else
if [[ -n $(echo "$release_name $release_body" | grep -P 'fc-stable-diffusion(?!-)') ]]; then
echo "release fc-stable-diffusion"
python hub-publish.py
fi
if [[ -n $(echo "$release_name $release_body" | grep -P 'fc-stable-diffusion-plus') ]]; then
echo "release fc-stable-diffusion-plus"
mv publish-plus.yaml publish.yaml
mv readme-plus.md readme.md
python hub-publish.py
fi
if [[ -n $(echo "$release_name $release_body" | grep -P 'fc-stable-diffusion-api') ]]; then
echo "release fc-stable-diffusion-api"
mv publish-api.yaml publish.yaml
mv readme-api.md readme.md
python hub-publish.py
fi
fi