-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (19 loc) · 852 Bytes
/
main.yml
File metadata and controls
22 lines (19 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This is a basic workflow to help you get started with Actions
name: gitee mirror
# Controls when the action will run.
on: [ push, pull_request, workflow_dispatch ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
to_gitee:
# The type of runner that the job will run on
runs-on: ubuntu-latest
continue-on-error: true
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v1
- uses: pixta-dev/repository-mirroring-action@v1
with:
target_repo_url: git@gitee.com:umengplus/CrashDemoiOS.git
ssh_private_key: ${{ secrets.GITEE_SSH_PRIVATE_KEY }}