Skip to content

Thu Oct 24 10:07:42 CST 2024 #10185

Thu Oct 24 10:07:42 CST 2024

Thu Oct 24 10:07:42 CST 2024 #10185

name: Publish to COS
on:
push:
branches:
- data
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: main
- name: Pull the latest data branch
run: |
git config user.name github-actions
git config user.email [email protected]
git subtree add --prefix=data origin data
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install
- name: Publish
env:
DATA_DIR: data
COS_SECRET_ID: ${{ secrets.COS_SECRET_ID }}
COS_SECRET_KEY: ${{ secrets.COS_SECRET_KEY }}
COS_REGION: ${{ secrets.COS_REGION }}
COS_BUCKET: ${{ secrets.COS_BUCKET }}
run: |
pipenv run python cos_publish.py