Merge pull request 'fix: now prs don't deploy to the dev server' (#16) from ci-cd into dev
Some checks failed
Build docker images, publish them, deploy to test server / build (push) Failing after 42s
Some checks failed
Build docker images, publish them, deploy to test server / build (push) Failing after 42s
Reviewed-on: #16 Reviewed-by: Seiwy <bmate20050911@gmail.com>
This commit is contained in:
commit
aae2556836
8
.github/workflows/build_deploy_dev.yml
vendored
8
.github/workflows/build_deploy_dev.yml
vendored
|
@ -1,10 +1,8 @@
|
||||||
name: build and publish docker image / deploy
|
name: Build docker images, publish them, deploy to test server
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ["dev"]
|
branches: ["dev"]
|
||||||
pull_request:
|
|
||||||
branches: ["dev"]
|
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -16,9 +14,6 @@ jobs:
|
||||||
id: maven-cache-restore
|
id: maven-cache-restore
|
||||||
uses: https://github.com/actions/cache/restore@v4
|
uses: https://github.com/actions/cache/restore@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
|
||||||
path/to/dependencies
|
|
||||||
some/other/dependencies
|
|
||||||
key: linux-maven
|
key: linux-maven
|
||||||
|
|
||||||
- uses: https://github.com/actions/checkout@v4
|
- uses: https://github.com/actions/checkout@v4
|
||||||
|
@ -52,6 +47,7 @@ jobs:
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
linux-maven
|
linux-maven
|
||||||
|
|
||||||
|
# TODO trigger pull with docker
|
||||||
- name: executing remote ssh commands using ssh key
|
- name: executing remote ssh commands using ssh key
|
||||||
uses: https://github.com/appleboy/ssh-action@v1.0.3
|
uses: https://github.com/appleboy/ssh-action@v1.0.3
|
||||||
with:
|
with:
|
||||||
|
|
Reference in a new issue