Compare commits
No commits in common. "master" and "dev-player-messages" have entirely different histories.
master
...
dev-player
@ -1,19 +1,15 @@
|
|||||||
name: Deploy datapack to staging
|
name: remote ssh command
|
||||||
on:
|
on: [push]
|
||||||
push:
|
|
||||||
branches: [staging]
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Updating staging servers...
|
- name: update server datapack folder
|
||||||
uses: appleboy/ssh-action@v1.2.1
|
uses: appleboy/ssh-action@v1.2.1
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: sadmin
|
username: sadmin
|
||||||
password: ${{ secrets.PASSWORD }}
|
password: ${{ secrets.PASSWORD }}
|
||||||
port: ${{ secrets.PORT }}
|
port: ${{ secrets.PORT }}
|
||||||
script: |
|
script: whoami
|
||||||
cd /home/sadmin/containers/crafty/scripts/datapacks
|
|
||||||
./update_dev.sh stag
|
|
||||||
@ -1,19 +0,0 @@
|
|||||||
name: Deploy datapack to dev
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [dev, dev-player-messages, dev-database]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Updating dev servers...
|
|
||||||
uses: appleboy/ssh-action@v1.2.1
|
|
||||||
with:
|
|
||||||
host: ${{ secrets.HOST }}
|
|
||||||
username: sadmin
|
|
||||||
password: ${{ secrets.PASSWORD }}
|
|
||||||
port: ${{ secrets.PORT }}
|
|
||||||
script: |
|
|
||||||
cd /home/sadmin/containers/crafty/scripts/datapacks
|
|
||||||
./update_dev.sh dev
|
|
||||||
@ -2,9 +2,6 @@
|
|||||||
|
|
||||||
## Roadmap
|
## Roadmap
|
||||||
|
|
||||||
- [ ] Database
|
|
||||||
- Will server the rest of datapack creation
|
|
||||||
- [ ] Serverside Coordinates Storage
|
|
||||||
- [ ] Team Development Event
|
- [ ] Team Development Event
|
||||||
- [ ] Implement Area naming
|
- [ ] Implement Area naming
|
||||||
- [ ] Server annoucements
|
- [ ] Server annoucements
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
name: Deploy datapack to prod
|
name: Deploy datapack to prod
|
||||||
on:
|
on:
|
||||||
push:
|
pull_request:
|
||||||
branches: [master]
|
branches: master
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
@ -11,9 +11,7 @@ jobs:
|
|||||||
uses: appleboy/ssh-action@v1.2.1
|
uses: appleboy/ssh-action@v1.2.1
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: sadmin
|
username: linuxserver.io
|
||||||
password: ${{ secrets.PASSWORD }}
|
password: ${{ secrets.PASSWORD }}
|
||||||
port: ${{ secrets.PORT }}
|
port: ${{ secrets.PORT }}
|
||||||
script: |
|
script_path: scripts/update_servers.sh
|
||||||
cd /home/sadmin/containers/crafty/scripts/datapacks
|
|
||||||
./update_dev.sh prod
|
|
||||||
@ -1 +0,0 @@
|
|||||||
whoami
|
|
||||||
Loading…
Reference in New Issue
Block a user