diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-01-30 21:15:56 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-01-30 21:15:56 +0100 |
| commit | 9d5afee24b323b0c3386026092048c91acec0170 (patch) | |
| tree | 5c63bcff92f7fb144e2a753c954d5d217367d5ee | |
| parent | 6736205723381d2344c07b143f8c4b3a39245069 (diff) | |
Fix not having the base collection in releases
| -rw-r--r-- | .github/workflows/nightly.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 27d370cc5..47ad4901b 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -29,6 +29,7 @@ jobs: cp LICENSE dist cp LLVM-C.dll dist cp -r shared dist + cp -r base dist cp -r core dist cp -r vendor dist cp -r bin dist @@ -56,6 +57,7 @@ jobs: cp LICENSE dist cp libLLVM* dist cp -r shared dist + cp -r base dist cp -r core dist cp -r vendor dist cp -r examples dist @@ -85,6 +87,7 @@ jobs: cp odin dist cp LICENSE dist cp -r shared dist + cp -r base dist cp -r core dist cp -r vendor dist cp -r examples dist |