Tue Nov 19 11:12:12 CST 2024 #10384
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 to OSS | |
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 | |
OSS_ACCESS_KEY_ID: ${{ secrets.OSS_ACCESS_KEY_ID }} | |
OSS_ACCESS_KEY_SECRET: ${{ secrets.OSS_ACCESS_KEY_SECRET }} | |
OSS_ENDPOINT: ${{ secrets.OSS_ENDPOINT }} | |
OSS_BUCKET: ${{ secrets.OSS_BUCKET }} | |
run: | | |
pipenv run python oss_publish.py |