笔者最近在研究如何使用GitHub来提交代码。

只需要使用github官方提供的github动作就可以了:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
jobs:
   push-code:

     steps:
      # 检出代码
      - name: Checkout repository
        uses: actions/checkout@v2

      # 配置git
      - name: Config git
        run: |
          git config --global user.name   mingmoe
          git config --global user.email  sudo.free@qq.com          

      - name: Push Code
        run: |
            git add .
            git commit -m "update"
            git push            

即可提交代码。

完.