mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
6 lines
251 B
Bash
Executable File
6 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git config --global user.name "${GH_NAME}"
|
|
git config --global user.email "${GH_EMAIL}"
|
|
echo "machine github.com login ${GH_NAME} password ${GH_TOKEN}" > ~/.netrc
|
|
cd website && npm install && GIT_USER="${GH_NAME}" npm run publish-gh-pages |