-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Goreleaser uses the git history to make a checksum over the binary or changelog, create a commit during the pipeline job execution is not a good idea.
- Loading branch information
1 parent
81d5b74
commit bde760a
Showing
2 changed files
with
2 additions
and
5 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 |
---|---|---|
|
@@ -22,10 +22,6 @@ jobs: | |
name: Set up version.txt | ||
run: | | ||
git describe --tags --abbrev=0 | tr -d '\n' > ./version.txt | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Github Actions" | ||
git add ./version.txt | ||
git commit -m "Upgrade version" | ||
echo "version found:" | ||
cat ./version.txt | ||
- | ||
|
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 |
---|---|---|
|
@@ -7,4 +7,5 @@ gitql | |
.idea/ | ||
vendor | ||
test/test_helper/ | ||
test/bats/ | ||
test/bats/ | ||
.version.txt |