Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
- name: Build engine
run: |
cd c
make glm ${{ matrix.make_args }}
ls -lh glm${{ matrix.ext }}
make colibri ${{ matrix.make_args }}
ls -lh colibri${{ matrix.ext }}

- name: Package
run: |
Expand All @@ -64,7 +64,7 @@ jobs:
# colibri-<tag>-<platform>.exe made every downloaded archive fail with
# "engine is not built. Run: coli build" -- with the engine sitting right there.
# The version lives in the ARCHIVE name, which is where a downloader looks for it.
cp c/glm${{ matrix.ext }} dist/colibri${{ matrix.ext }}
cp c/colibri${{ matrix.ext }} dist/colibri${{ matrix.ext }}
cp c/coli dist/
cp c/version.py dist/
cp c/openai_server.py dist/
Expand Down
Loading