Skip to content

功能增强: 提供的路径为一个目录时可随机选择该目录下的图片或语音 (#23) #67

功能增强: 提供的路径为一个目录时可随机选择该目录下的图片或语音 (#23)

功能增强: 提供的路径为一个目录时可随机选择该目录下的图片或语音 (#23) #67

Workflow file for this run

name: Generate Sidebar
on: [push, workflow_dispatch]
permissions: write-all
jobs:
generate:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run Script
run: |
sh marketplace/scripts/action.sh
- name: Push
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git add .
git commit -m "generate market content" || exit 0
git push