mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-14 16:59:25 +08:00
25 lines
496 B
YAML
25 lines
496 B
YAML
name: pack
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'smallkai'
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: "smallkai"
|
|
- name: generate config
|
|
run: cmake -B build
|
|
- name: install
|
|
run: cmake --install build
|
|
- name: upload artifact to github
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Alas
|
|
path: install
|
|
if-no-files-found: error
|
|
|