-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
33 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,32 @@ | ||
name: Create | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'testing' | ||
|
||
jobs: | ||
|
||
build-x86: | ||
permissions: write-all | ||
name: Create image amd64 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
BUILDTYPE: ["full"] | ||
BUILDARCH: ["amd64"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build | ||
id: build_bootable | ||
env: | ||
BUILDTYPE: ${{matrix.BUILDTYPE}} | ||
BUILDARCH: ${{matrix.BUILDARCH}} | ||
run: | | ||
sudo apt-get -qqy update && sudo apt-get -qqy install debootstrap coreutils pigz fdisk kpartx mount uuid-runtime lvm2 | ||
bash ./create_image.sh | ||
mv *.img bootable.img | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: bootable.img | ||
path: bootable.img |
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- 'main' | ||
- 'testing' | ||
|
||
jobs: | ||
|
||
|