From 533a7b6c5251153249bc008cab7a573244092b92 Mon Sep 17 00:00:00 2001 From: Arthur Beck Date: Tue, 25 Feb 2025 16:45:06 -0600 Subject: [PATCH] Add test CI script --- .forgejo/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .forgejo/workflows/ci.yml diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml new file mode 100644 index 0000000..7d92237 --- /dev/null +++ b/.forgejo/workflows/ci.yml @@ -0,0 +1,22 @@ +name: Continuous Integration +on: [push] + +jobs: + ci: + steps: + - uses: actions/checkout@v4 + - uses: msrd0/rust-toolchain@nightly + - run: | + cd kernel + cp config.aphro.example config.aphro + ./build + mkdir release + mv aphrodite-*.iso release + - name: Publish Release + uses: actions/forgejo-release@v2 + with: + direction: upload + url: https://git.verygay.fyi + release-dir: kernel/release + release-notes: "Continuous Integration" + \ No newline at end of file