Compare commits
No commits in common. "aae25568361f27103165867b0e1a5e68d4735736" and "7fa2ff3b6492b790f42b65c31a221b692b381520" have entirely different histories.
aae2556836
...
7fa2ff3b64
8
.github/workflows/build_deploy_dev.yml
vendored
8
.github/workflows/build_deploy_dev.yml
vendored
|
@ -1,8 +1,10 @@
|
|||
name: Build docker images, publish them, deploy to test server
|
||||
name: build and publish docker image / deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["dev"]
|
||||
pull_request:
|
||||
branches: ["dev"]
|
||||
|
||||
|
||||
jobs:
|
||||
|
@ -14,6 +16,9 @@ jobs:
|
|||
id: maven-cache-restore
|
||||
uses: https://github.com/actions/cache/restore@v4
|
||||
with:
|
||||
path: |
|
||||
path/to/dependencies
|
||||
some/other/dependencies
|
||||
key: linux-maven
|
||||
|
||||
- uses: https://github.com/actions/checkout@v4
|
||||
|
@ -47,7 +52,6 @@ jobs:
|
|||
restore-keys: |
|
||||
linux-maven
|
||||
|
||||
# TODO trigger pull with docker
|
||||
- name: executing remote ssh commands using ssh key
|
||||
uses: https://github.com/appleboy/ssh-action@v1.0.3
|
||||
with:
|
||||
|
|
Reference in a new issue