-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try to set correct branch for commit + push
- Loading branch information
1 parent
7445ec1
commit 746b2d1
Showing
1 changed file
with
3 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -31,14 +31,16 @@ jobs: | |
cd byte-buddy | ||
git checkout $tag | ||
git apply bb.patch | ||
mvn clean package -Pextras -Dskiptests -q | ||
mvn clean package -Pextras -Dskiptests -q -B | ||
echo Build succeeded | ||
mv ./byte-buddy/target/$tag.jar ../agent/libs | ||
mv ./byte-buddy/target/$tag-sources.jar ../agent/libs | ||
cd .. | ||
rm -rf byte-buddy | ||
perl -pi -e "s|libs/byte-buddy-.+jar|libs/$tag.jar|" agent/build.gradle | ||
echo updated byte buddy and reference | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | ||
git checkout "${GITHUB_HEAD_REF}" | ||
git add agent/libs agent/build.gradle | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
|