From 060d6e15a3b36d92700dd8aac5857910358267af Mon Sep 17 00:00:00 2001 From: acidicoala <67734819+acidicoala@users.noreply.github.com> Date: Mon, 6 Oct 2025 23:01:40 +0500 Subject: [PATCH] Implemented tag release --- .github/workflows/dev-build.yml | 2 ++ .github/workflows/tag-release.yml | 5 +++-- KoalaBox | 2 +- README.md | 2 +- sync.json | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dev-build.yml b/.github/workflows/dev-build.yml index 2a427d3..af3db38 100644 --- a/.github/workflows/dev-build.yml +++ b/.github/workflows/dev-build.yml @@ -2,6 +2,8 @@ name: 'Development Build' on: push: + branches: + - '**' # This prevents dev builds on tag pushes jobs: dev-build: diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index eb3109e..38dd588 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -15,5 +15,6 @@ jobs: uses: acidicoala/KoalaBox/.github/workflows/create-release.yml@master needs: build-binaries with: - version: ${{ github.ref_name }} - zip_command: 'TODO' + zip_files: > + res/README.txt + res/SmokeAPI.config.json diff --git a/KoalaBox b/KoalaBox index ad360b6..d40fc46 160000 --- a/KoalaBox +++ b/KoalaBox @@ -1 +1 @@ -Subproject commit ad360b6874e97bad18149539897a1b956e4468ba +Subproject commit d40fc468a37963b24469e0ff54375c85d7a0d2a3 diff --git a/README.md b/README.md index fccde82..289dde6 100644 --- a/README.md +++ b/README.md @@ -196,7 +196,7 @@ wrappers might cause issues. That is why proxy mode is recommended on Linux for ### 🔀 Proxy mode (🐧 Linux) Same as on Windows: -1. Rename the original `libsteam_api.so` to `libsteam_api.so` +1. Rename the original `libsteam_api.so` to `libsteam_api_o.so` 2. Extract and paste the `libsmoke_api32.so` or `libsmoke_api64.so` to the same directory, renaming it to `libsteam_api.so`. ### 🪝 Hook mode (🐧 Linux) diff --git a/sync.json b/sync.json index 8c2f9a9..0a657cc 100644 --- a/sync.json +++ b/sync.json @@ -8,7 +8,7 @@ "sdk_libs_win": "`steam_api.dll` or `steam_api64.dll`", "sdk_libs_linux": "`libsteam_api.so`", "sdk_libs_orig_win": "`steam_api_o.dll` or `steam_api64_o.dll`", - "sdk_libs_orig_linux": "`libsteam_api.so`", + "sdk_libs_orig_linux": "`libsteam_api_o.so`", "show_3rd_party_point": true, "unlocker_libs_win": "`smoke_api32.dll` or `smoke_api64.dll`", "unlocker_libs_linux": "`libsmoke_api32.so` or `libsmoke_api64.so`",