Skip to content

Commit

Permalink
Edit CI_proto_auto_complile.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kim201212 committed May 11, 2022
1 parent 99ab230 commit 6e16388
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/CI_proto_auto_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
token: ${{ secrets.TOKEN }}
- name: Set up Go
uses: actions/setup-go@v2
with:
Expand All @@ -35,13 +37,13 @@ jobs:
- name: Install Protoc
run: |
make compile
- name: Commit files
run: |
git config --local user.name "xellos00"
git add ./
git commit -m "compile and update with compiled pb.go(s)"
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: 'compile and update with compiled pb.go(s)'
add: '*'
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.VATZ_PROTO_COMPILE_TOKEN }}
force: true
force: true

0 comments on commit 6e16388

Please sign in to comment.