forked from MarmadileManteater/FreeTubeAndroid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add code for getting a dependency via git cli before building
- Loading branch information
1 parent
096b7aa
commit cdb848a
Showing
2 changed files
with
10 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 |
---|---|---|
|
@@ -78,6 +78,11 @@ jobs: | |
- name: 🚧 Setup Android SDK Tools | ||
uses: android-actions/[email protected] | ||
|
||
- name: ⬇ Download dependency `cordova-plugin-run-in-background` | ||
run: | | ||
git clone https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background.git | ||
sed -i 's@git+https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background.git@../../cordova-plugin-run-in-background@g' ./src/cordova/package.js | ||
- name: 📦 Pack for 📱Android with Node.js & Cordova | ||
run: yarn pack:cordova | ||
|
||
|
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 |
---|---|---|
|
@@ -58,7 +58,6 @@ jobs: | |
field: name | ||
value: ${{ steps.appId.outputs.result }} | ||
|
||
|
||
- name: ⬆ Update package.json product name | ||
uses: jossef/[email protected] | ||
with: | ||
|
@@ -78,6 +77,11 @@ jobs: | |
- name: 🚧 Setup Android SDK Tools | ||
uses: android-actions/[email protected] | ||
|
||
- name: ⬇ Download dependency `cordova-plugin-run-in-background` | ||
run: | | ||
git clone https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background.git | ||
sed -i 's@git+https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background.git@../../cordova-plugin-run-in-background@g' ./src/cordova/package.js | ||
- name: 📦 Pack for 📱Android with Node.js & Cordova | ||
run: yarn pack:cordova | ||
|
||
|