forked from qnblackcat/uYouPlus
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
eac8ea2
commit fc485eb
Showing
1 changed file
with
16 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 |
---|---|---|
|
@@ -11,13 +11,28 @@ jobs: | |
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4.1.7 | ||
uses: actions/checkout@v4.2.1 | ||
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
- name: Add uYouEnhanced submodules | ||
run: | | ||
git submodule add https://github.com/bhackel/YouLoop.git Tweaks/YouLoop | ||
git add . | ||
git commit -m "added YouLoop tweak" | ||
git push origin | ||
- name: Make .bundle files | ||
run: | | ||
cd Bundles | ||
ln -s ../Tweaks/YouLoop/layout/Library/Application\ Support/YouLoop.bundle YouLoop.bundle | ||
git add . | ||
git commit -m "Added YouLoop bundle" | ||
git push origin | ||
- name: Update submodules | ||
run: | | ||
git submodule update --init --recursive --remote Tweaks/Alderis | ||
|