Skip to content

Commit

Permalink
added pussh step to build
Browse files Browse the repository at this point in the history
  • Loading branch information
mms-gianni committed Mar 2, 2021
1 parent e009f56 commit a93bd36
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
go-version: 1.15

- name: Build
id: build_release
run: make all

- name: Create Release
Expand Down Expand Up @@ -62,6 +63,10 @@ jobs:
asset_path: ./cmd/git-project/git-project.windows.64bit
asset_name: git-project.windows.64bit
asset_content_type: application/x-binary

- name: Clean up binaries
run: make clean
- name: Add and push binaries
run: |
git config --global user.email "[email protected]"
git config --global user.name "Build Job"
git add .
git commit -m "added rebuilded binaries"
git push

0 comments on commit a93bd36

Please sign in to comment.