-
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.
- Loading branch information
1 parent
92ba4fe
commit e7118ff
Showing
1 changed file
with
9 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential debhelper devscripts dh-make fakeroot | ||
sudo apt-get install -y dpkg-dev build-essential debhelper devscripts dh-make fakeroot | ||
- name: Create DEBIAN directory | ||
run: | | ||
|
@@ -39,6 +39,14 @@ jobs: | |
- name: List files in current directory | ||
run: ls -l | ||
|
||
- name: Add Debian Package to Git | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
git add com.arichorn.lowcontrastmode_1.3.0_iphoneos-arm.deb | ||
git commit -m "Add Debian package for release" | ||
git push | ||
- name: Upload Debian Package | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
|