forked from Jexactyl/Jexactyl
-
-
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
1 parent
7fe9859
commit 0f024cb
Showing
1 changed file
with
2 additions
and
0 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 |
---|---|---|
|
@@ -32,10 +32,12 @@ jobs: | |
run: | | ||
BRANCH=release/${REF:10} | ||
BRANCH=${BRANCH//\//_} | ||
echo "$BRANCH" | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Jexactyl Releases" | ||
git checkout -b $BRANCH | ||
git push -u origin $BRANCH | ||
echo "Ref value: ${REF:10}" | ||
sed -i "s/ 'version' => 'canary',/ 'version' => '${REF:11}',/" config/app.php | ||
git add config/app.php | ||
git commit -m "New Jexactyl release inbound!" | ||
|