-
Notifications
You must be signed in to change notification settings - Fork 7
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
eebb7c3
commit fc353c4
Showing
1 changed file
with
8 additions
and
9 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 |
---|---|---|
|
@@ -23,27 +23,26 @@ jobs: | |
steps: | ||
- name: Checkouts | ||
uses: actions/checkout@v3 | ||
|
||
- name: Clone Dumpyara | ||
run: | | ||
git clone https://github.com/DumprX/DumprX ~/dump | ||
sudo apt install neofetch -y | ||
git clone https://github.com/fw-dumps/DumprX dumper | ||
sudo apt install python3-pip -y | ||
sudo apt install -y f2fs-tools | ||
- name: Setup Dumpyara environment | ||
working-directory: dumper | ||
run: | | ||
cd ~/dump | ||
sudo bash setup.sh | ||
git config --global user.name "atharvnegi" | ||
git config --global user.email "[email protected]" | ||
- name: Setup config envs | ||
working-directory: dumper | ||
run: | | ||
cd ~/dump | ||
echo "${{ secrets.GIT_TOKEN }}" > .github_token | ||
echo "${{ secrets.GIT_ORG_NAME }}" > .github_orgname | ||
echo "${{ secrets.BOT_TOKEN }}" > .tg_token | ||
echo "${{ secrets.CHAT_ID }}" > .tg_chat | ||
- name: Running Dumpyara | ||
working-directory: dumper | ||
run: | | ||
cd ~/dump | ||
./dumper.sh "$ROM_URL" | ||
./dumper.sh $ROM_URL |