mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 20:58:14 -05:00
16 lines
335 B
YAML
16 lines
335 B
YAML
|
name: Sync Release to Gitee
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
sync-release-to-gitee:
|
||
|
runs-on: ubuntu-latest
|
||
|
env:
|
||
|
GITEE_TOKEN: ${{ secrets.GITEE_TOKEN }}
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Sync to Gitee
|
||
|
run: |
|
||
|
pip3 install PyGitHub
|
||
|
python3 .github/workflows/sync.py
|