-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,38 +46,9 @@ jobs: | |
chmod +x packagr-bumpr-linux-amd64 | ||
./packagr-bumpr-linux-amd64 --help | ||
echo "listing linked libraries" && ldd packagr-bumpr-linux-amd64 | ||
- name: Commit | ||
uses: EndBug/add-and-commit@v4 # You can change this to use a specific version | ||
with: | ||
|
||
# The name of the user that will be displayed as the author of the commit | ||
# Default: author of the commit that triggered the run | ||
author_name: Jason Kulatunga | ||
|
||
# The email of the user that will be displayed as the author of the commit | ||
# Default: author of the commit that triggered the run | ||
author_email: [email protected] | ||
|
||
# The local path to the directory where your repository is located. You should use actions/checkout first to set it up | ||
# Default: '.' | ||
cwd: ${{ env.PROJECT_PATH }} | ||
|
||
# Whether to use the --force option on `git add`, in order to bypass eventual gitignores | ||
# Default: false | ||
force: false | ||
|
||
# Whether to use the --signoff option on `git commit` | ||
# Default: false | ||
signoff: true | ||
|
||
# The message for the commit | ||
# Default: 'Commit from GitHub Actions' | ||
message: '(${{steps.bump_version.outputs.release_version}}) Automated packaging of release by Packagr' | ||
|
||
# Name of the tag to add to the new commit (see the paragraph below for more info) | ||
# Default: '' | ||
tag: ${{steps.bump_version.outputs.release_version}} | ||
|
||
- name: Commit Changes | ||
id: commit | ||
uses: packagrio/action-releasr-go@master | ||
env: | ||
# This is necessary in order to push a commit to the repo | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged | ||
|