Publish packages #130
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: Publish packages | |
on: | |
push: | |
branches: [ V6-master ] | |
paths: [ '.github/publish.txt' ] | |
workflow_dispatch: | |
jobs: | |
publish-windows-package: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.8.10 amd64 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8.10 | |
architecture: x64 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m venv venv | |
venv\Scripts\python -m pip install --upgrade pip wheel setuptools | |
venv\Scripts\python -m pip install -r requirements.txt | |
venv\Scripts\python -m pip install cos-python-sdk-v5 | |
venv\Scripts\python -m pip install pyinstaller | |
- name: Build and publish package | |
env: | |
SECRETID: ${{ secrets.SECRETID }} | |
SECRETKEY: ${{ secrets.SECRETKEY }} | |
run: | | |
venv\Scripts\Activate.ps1 | |
venv\Scripts\python run_build.py --type package --upload | |
publish-linux-package: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m venv venv | |
venv/bin/python -m pip install --upgrade pip wheel setuptools | |
venv/bin/python -m pip install -r requirements.txt | |
venv/bin/python -m pip install cos-python-sdk-v5 | |
venv/bin/python -m pip install pyinstaller | |
- name: Build and publish package | |
env: | |
SECRETID: ${{ secrets.SECRETID }} | |
SECRETKEY: ${{ secrets.SECRETKEY }} | |
run: | | |
source venv/bin/activate | |
venv/bin/python run_build.py --type package --upload |