fix: file not allow and cors #17
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 dev version to serverless-hub | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- dev | |
- 'dev/**' | |
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 }} | |
run: | | |
export TAG="dev" | |
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 |