Release v1.0.12 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |