-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dragging map should reset hash location
Closes #99
- Loading branch information
1 parent
6eb902c
commit 7f6af33
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Build and Push NodeJS Server | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
paths: | ||
- "GuildWarsPartySearch.NodeJSServer/**" | ||
- ".github/workflows/docker-deploy-nodejs.yaml" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install sshpass | ||
run: sudo apt-get update && sudo apt-get install -y sshpass | ||
|
||
- name: Redeploying content | ||
shell: pwsh | ||
run: | | ||
echo "Running redeploy.sh" | ||
sshpass -p "${{ secrets.HOST_PASS }}" ssh -o StrictHostKeyChecking=no ${{ secrets.HOST_USER }}@${{ secrets.HOST_ADDRESS }} "cd partysearchserver_nodejs/ && ./redeploy.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters