diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9086b4..72a668d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,12 +90,12 @@ jobs: ls -Rall if [ -d "./Linux/" ]; then cd ./Linux/ - tar -czf ../${{ github.event.repository.name }}-${version}-linux.tar.gz -T <(\ls -1) + tar -czf ../${{ github.event.repository.name }}-${version}-linux.tar.gz addons cd - fi if [ -d "./Windows/" ]; then cd ./Windows/ - tar -czf ../${{ github.event.repository.name }}-${version}-windows.tar.gz -T <(\ls -1) + zip -r ../${{ github.event.repository.name }}-${version}-windows.zip addons cd - fi @@ -103,6 +103,6 @@ jobs: uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: '*.tar.gz' + file: ${{ github.event.repository.name }}-* tag: ${{ github.ref }} file_glob: true diff --git a/README.md b/README.md index a3964a8..bbd8bfc 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,10 @@ A Counter-Strike 2 Metamod plugin that removes the max speed limitation from players on the ground, feels like CS:S. Useful for zombie knockback, several movement gamemodes, or just easier bhop. -Ported from the [Movement Unlocker](https://forums.alliedmods.net/showthread.php?t=255298) SourceMod plugin for CS:GO. \ No newline at end of file +Ported from the [Movement Unlocker](https://forums.alliedmods.net/showthread.php?t=255298) SourceMod plugin for CS:GO. + +## Installation + +- Install [Metamod](https://www.sourcemm.net/downloads.php?branch=dev) +- Download the [latest release package](https://github.com/Source2ZE/MovementUnlocker/releases/latest) for your OS +- Extract the package contents into `game/csgo` on your server \ No newline at end of file