-
-
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.
* feat: add deb-build action * CI: Fix path * remove deb-build workflow * add debian package workflow --------- Co-authored-by: Mateus Melchiades <[email protected]>
- Loading branch information
1 parent
9fdeb69
commit 29df4da
Showing
1 changed file
with
40 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Build Debian Package | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
deb-build: | ||
runs-on: ubuntu-22.04 | ||
container: | ||
image: ghcr.io/vanilla-os/pico:main | ||
volumes: | ||
- /proc:/proc | ||
- /:/run/host | ||
options: --privileged -it | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: De-bloat stock image | ||
run: | | ||
rm -r /run/host/usr/share/dotnet | ||
rm -r /run/host${{ runner.tool_cache }} | ||
- name: Install needed packages | ||
run: apt update && apt install dpkg-dev build-essential debhelper libbtrfs-dev libdevmapper-dev libgpgme-dev lvm2 dh-golang golang-go gcc pkg-config -y | ||
|
||
- name: Build debian package | ||
run: | | ||
dpkg-buildpackage --no-sign | ||
mv ../*.deb ../albius.deb | ||
- uses: softprops/action-gh-release@v1 | ||
with: | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
tag_name: "continuous" | ||
prerelease: true | ||
name: "Continuous Build" | ||
files: | | ||
/__w/Albius/albius.deb |