Add test CI script
This commit is contained in:
parent
0dc14b152f
commit
533a7b6c52
1 changed files with 22 additions and 0 deletions
22
.forgejo/workflows/ci.yml
Normal file
22
.forgejo/workflows/ci.yml
Normal file
|
@ -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"
|
||||
|
Loading…
Add table
Reference in a new issue