mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 06:00:46 +00:00
17 lines
230 B
Bash
Executable File
17 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
TARGET="../docs" # Relative to script directory
|
|
|
|
cd "$(dirname "$(readlink -f "$0")")"
|
|
|
|
git pull
|
|
|
|
npm install
|
|
npm run build
|
|
|
|
git reset
|
|
git add -A -f "$TARGET"
|
|
git commit -m "WebConfigGenerator build"
|
|
git push
|