diff --git a/.github/workflows/pack.yaml b/.github/workflows/pack.yaml new file mode 100644 index 000000000..0938aa9b3 --- /dev/null +++ b/.github/workflows/pack.yaml @@ -0,0 +1,19 @@ +name: pack +on: 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 +