upload image from iphone #73
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: Image Workflow | |
on: | |
push: | |
paths: | |
- 'icon/**' # 监视 icons 文件夹及其子文件夹下的内容 | |
pull_request: | |
paths: | |
- 'icon/**' # 监视 icons 文件夹及其子文件夹下的内容 | |
workflow_dispatch: | |
jobs: | |
generate_json: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: Generate JSON | |
run: | | |
python .github/scripts/generate_image_json.py | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: json-artifact | |
path: ${{ github.workspace }}/Files.icons.json | |
- name: Push to QuantumultX Repository | |
run: | | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor }}@users.noreply.github.com" | |
git add . | |
git commit -m "自动更新图标仓库" | |
git push origin HEAD:main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |