Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
liziwl committed Jun 9, 2021
1 parent 9af211e commit 95bea99
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
required: true

jobs:
Release:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -50,4 +50,35 @@ jobs:
file: 'sustech-thesis.zip'
asset_name: sustech-thesis-${{ github.event.inputs.Version }}.zip
tag: ${{ github.event.inputs.Version }}
overwrite: true
overwrite: true

sync:
runs-on: ubuntu-latest
name: Sync to other git service
if: always()
needs: release
steps:

# - name: Push to gitee
# run: |
# mkdir -p /tmp/tmp_push
# cd /tmp/tmp_push
# git clone --bare https://github.com/liziwl/sustech-master-thesis.git this_repo
# cd this_repo
# git push --force --mirror "https://${USER}:${PERSONAL_TOKEN}@${REPO_URL}"
# env:
# USER: ${{ secrets.GITEE_USER }}
# PERSONAL_TOKEN: ${{ secrets.GITEE_PERSONAL_TOKEN }}
# REPO_URL: "gitee.com/liziwl/sustech-master-thesis.git"

- name: Push to sustech-git
run: |
mkdir -p /tmp/tmp_push2
cd /tmp/tmp_push2
git clone --bare https://github.com/liziwl/sustech-master-thesis.git this_repo
cd this_repo
git push --force --mirror "https://${USER}:${PERSONAL_TOKEN}@${REPO_URL}"
env:
USER: project_160_bot
PERSONAL_TOKEN: ${{ secrets.GITLAB_PERSONAL_TOKEN }}
REPO_URL: "mirrors.sustech.edu.cn/git/liziwl/sustech-master-thesis.git"

0 comments on commit 95bea99

Please sign in to comment.