mirror of
https://github.com/eryajf/learning-weekly.git
synced 2025-09-26 17:51:12 +08:00
30 lines
827 B
YAML
30 lines
827 B
YAML
name: Sync to CNB
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths-ignore:
|
|
- 'learning-weekly.xml'
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Sync to CNB Repository
|
|
run: |
|
|
docker run --rm \
|
|
-v ${{ github.workspace }}:${{ github.workspace }} \
|
|
-w ${{ github.workspace }} \
|
|
-e PLUGIN_TARGET_URL="https://cnb.cool/eryajf/Learning-Weekly.git" \
|
|
-e PLUGIN_AUTH_TYPE="https" \
|
|
-e PLUGIN_USERNAME="cnb" \
|
|
-e PLUGIN_PASSWORD=${{ secrets.CNB_TOKEN }} \
|
|
-e PLUGIN_BRANCH="main" \
|
|
-e PLUGIN_GIT_USER="cnb" \
|
|
-e PLUGIN_GIT_EMAIL="cnb@cnb.cool" \
|
|
-e PLUGIN_FORCE="true" \
|
|
tencentcom/git-sync |