diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..e69de29 diff --git a/.github/template/ISSUES.yaml b/.github/template/ISSUES.yaml new file mode 100644 index 0000000..d99a745 --- /dev/null +++ b/.github/template/ISSUES.yaml @@ -0,0 +1,43 @@ +name: Bug Report +description: File a bug report. +title: "[Bug]: " +labels: ["bug", "triage"] +projects: ["archiso-t2"] +assignees: + - t2S +type: bug +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's Code of Conduct + required: true + - type: upload + id: screenshots + attributes: + label: Upload screenshots + description: If applicable, add screenshots to help explain your problem. + validations: + required: false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eab35e1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +./out/* +*.iso \ No newline at end of file diff --git a/docker_builder.sh b/docker_builder.sh new file mode 100644 index 0000000..0f12ec1 --- /dev/null +++ b/docker_builder.sh @@ -0,0 +1,7 @@ + #/bin/bash + + # so you don t need arch to build arch + # fixed tag also allow to fix version + # a .lock with version could be good as well + docker run --rm -it --privileged -v "${PWD}:/app" archlinux:latest bash -lc 'pacman -Sy --needed --noconfirm wget archiso grub arch-install-scripts git base-devel && mkarchiso -o "/app/out" -v "/app/archiso"' +# https://docs.docker.com/engine/install/ \ No newline at end of file