Compare commits
23 Commits
dev-player
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| e5e78068f0 | |||
| 65a38df465 | |||
| 19734bfa77 | |||
| 7706ac5c7f | |||
| 31f7c78b71 | |||
| 88be764b12 | |||
| 87b38de079 | |||
| c4d05b0474 | |||
| 663beae976 | |||
| 4a8ffde03c | |||
| 39d48ab642 | |||
| 476981d3ce | |||
| 815b5218fd | |||
| 3d040bfba4 | |||
| 9d14aec7d3 | |||
| 94120467a7 | |||
| 40c65b677d | |||
| 349b8ec1d8 | |||
| 356a06dd4c | |||
| ce0d8cc424 | |||
| 31b2bf8cf5 | |||
| 1a9b650679 | |||
| 48bdeceb93 |
19
.gitea/workflows/push_dev.yaml
Normal file
19
.gitea/workflows/push_dev.yaml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
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
|
||||||
@ -1,7 +1,7 @@
|
|||||||
name: Deploy datapack to prod
|
name: Deploy datapack to prod
|
||||||
on:
|
on:
|
||||||
pull_request:
|
push:
|
||||||
branches: master
|
branches: [master]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
@ -11,7 +11,9 @@ jobs:
|
|||||||
uses: appleboy/ssh-action@v1.2.1
|
uses: appleboy/ssh-action@v1.2.1
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: linuxserver.io
|
username: sadmin
|
||||||
password: ${{ secrets.PASSWORD }}
|
password: ${{ secrets.PASSWORD }}
|
||||||
port: ${{ secrets.PORT }}
|
port: ${{ secrets.PORT }}
|
||||||
script_path: scripts/update_servers.sh
|
script: |
|
||||||
|
cd /home/sadmin/containers/crafty/scripts/datapacks
|
||||||
|
./update_dev.sh prod
|
||||||
@ -1,15 +1,19 @@
|
|||||||
name: remote ssh command
|
name: Deploy datapack to staging
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches: [staging]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: update server datapack folder
|
- name: Updating staging servers...
|
||||||
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: whoami
|
script: |
|
||||||
|
cd /home/sadmin/containers/crafty/scripts/datapacks
|
||||||
|
./update_dev.sh stag
|
||||||
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## 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
scripts/test.sh
Executable file
1
scripts/test.sh
Executable file
@ -0,0 +1 @@
|
|||||||
|
whoami
|
||||||
Loading…
Reference in New Issue
Block a user