-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yml: Added branch in cloning to avoid redirecting warning.
Signed-off-by: Carlo Dandan <[email protected]>
- Loading branch information
1 parent
a2cb286
commit 89bd8d9
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -67,7 +67,7 @@ jobs: | |
- name: Build Environment | ||
run: | | ||
sudo apt install aria2 -y | ||
git clone https://gitlab.com/OrangeFox/misc/scripts | ||
git clone https://gitlab.com/OrangeFox/misc/scripts.git -b master | ||
cd scripts | ||
sudo bash setup/android_build_env.sh | ||
|
@@ -78,7 +78,7 @@ jobs: | |
cd ${GITHUB_WORKSPACE}/OrangeFox | ||
git config --global user.name "Carlo Dandan" | ||
git config --global user.email "[email protected]" | ||
git clone https://gitlab.com/OrangeFox/sync.git | ||
git clone https://gitlab.com/OrangeFox/sync.git -b master | ||
cd sync | ||
./orangefox_sync.sh --branch ${{ github.event.inputs.MANIFEST_BRANCH }} --path ${GITHUB_WORKSPACE}/OrangeFox/fox_${{ github.event.inputs.MANIFEST_BRANCH }} | ||
|