Skip to content

Commit b57205a

Browse files
committed
Add installation instructions
1 parent 4de62c0 commit b57205a

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,19 @@ jobs:
9090
ls -Rall
9191
if [ -d "./Linux/" ]; then
9292
cd ./Linux/
93-
tar -czf ../${{ github.event.repository.name }}-${version}-linux.tar.gz -T <(\ls -1)
93+
tar -czf ../${{ github.event.repository.name }}-${version}-linux.tar.gz addons
9494
cd -
9595
fi
9696
if [ -d "./Windows/" ]; then
9797
cd ./Windows/
98-
tar -czf ../${{ github.event.repository.name }}-${version}-windows.tar.gz -T <(\ls -1)
98+
zip -r ../${{ github.event.repository.name }}-${version}-windows.zip addons
9999
cd -
100100
fi
101101
102102
- name: Release
103103
uses: svenstaro/upload-release-action@v2
104104
with:
105105
repo_token: ${{ secrets.GITHUB_TOKEN }}
106-
file: '*.tar.gz'
106+
file: ${{ github.event.repository.name }}-*
107107
tag: ${{ github.ref }}
108108
file_glob: true

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,10 @@
22

33
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.
44

5-
Ported from the [Movement Unlocker](https://forums.alliedmods.net/showthread.php?t=255298) SourceMod plugin for CS:GO.
5+
Ported from the [Movement Unlocker](https://forums.alliedmods.net/showthread.php?t=255298) SourceMod plugin for CS:GO.
6+
7+
## Installation
8+
9+
- Install [Metamod](https://www.sourcemm.net/downloads.php?branch=dev)
10+
- Download the [latest release package](https://github.com/Source2ZE/MovementUnlocker/releases/latest) for your OS
11+
- Extract the package contents into `game/csgo` on your server

0 commit comments

Comments
 (0)