Skip to content

Commit a29a33e

Browse files
committed
chore: bump version
1 parent 16134d2 commit a29a33e

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ jobs:
3333
with:
3434
python-version: '3.13'
3535

36+
- name: Export GitHub Actions cache env (for vcpkg GHA binary cache)
37+
uses: actions/github-script@v7
38+
with:
39+
script: |
40+
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
41+
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
42+
3643
- name: Setup vcpkg
3744
uses: lukka/run-vcpkg@v11
3845
with:

Data/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Rivet",
3-
"version_number": "0.1.5",
3+
"version_number": "0.1.6",
44
"website_url": "https://github.com/ReDoIngMods/Rivet",
55
"description": "A modding toolkit for Scrap Mechanic. It gives you a clean way to inject DLLs into the game process and to load mods in a structured, discoverable way.",
66
"dependencies": []

Scripts/CreatePackage.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ def create_package_bytes() -> bytes:
8080
package.writestr("RivetPack/version.dll", version_data)
8181
package.writestr("RivetPack/Rivet.ini", b"")
8282

83-
# Add RivetPack/Rivet/Loader.dll
84-
package.writestr("RivetPack/Rivet/Loader.dll", rivet_loader_data)
83+
# Add RivetPack/Rivet/Rivet/Loader.dll (nested — hack for now)
84+
package.writestr("RivetPack/Rivet/Rivet/Loader.dll", rivet_loader_data)
8585

8686
# Add dummy files Rivet.ini, Rivet.log, and Mods/ directory
8787
package.writestr("RivetPack/Rivet/Mods/", b"")
88-
package.writestr("RivetPack/Rivet/Rivet.log", b"")
88+
package.writestr("RivetPack/Rivet/Rivet/Rivet.log", b"")
8989

9090
return rivet_package_data.getvalue()
9191

0 commit comments

Comments
 (0)