Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cilki committed Mar 2, 2024
0 parents commit 7d8da4d
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build goldboot image
uses: fossable/goldboot-action@master
with:
config-path: goldboot.json
output-path: image.gb

- name: Save image artifact
uses: actions/upload-artifact@v3
with:
name: my_image.gb
path: image.gb
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## goldboot template

28 changes: 28 additions & 0 deletions goldboot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"alloy": [
{
"fabricators": null,
"mold": {
"ArchLinux": {
"hostname": "ArchLinux",
"mirrorlist": null,
"packages": null,
"root_password": {
"plaintext": "root"
}
}
},
"pref_size": null,
"source": {
"Iso": {
"url": "https://mirrors.kernel.org/archlinux/iso/2024.01.01/archlinux-2024.01.01-x86_64.iso"
}
}
}
],
"arch": "Amd64",
"debug": false,
"name": "Example Arch Linux",
"record": false,
"size": "4G"
}

0 comments on commit 7d8da4d

Please sign in to comment.