mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-22 22:19:55 +08:00
20 lines
413 B
YAML
20 lines
413 B
YAML
name: pack
|
|
on: [workflow_dispatch, push]
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: "smallkai"
|
|
- name: pack
|
|
run: make all
|
|
- name: upload artifact to github
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Alas
|
|
path: pack/Alas.zip
|
|
if-no-files-found: error
|
|
|