File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 22
22
23
23
- name : Create application-secret-deploy.yml
24
24
run : |
25
- echo "Decoding SECRET_FILE secret and create application-secret-deploy.yml"
26
- echo "${{ secrets.SECRET_FILE }}" | base64 -d > ./src/main/resources/application-secret-deploy.yml
25
+ echo "Decoding SECRET and create application-secret-deploy.yml"
26
+ echo "${{ secrets.SECRET }}" | base64 -d > ./src/main/resources/application-secret-deploy.yml
27
27
28
28
29
29
- name : Build with Gradle
@@ -116,7 +116,6 @@ jobs:
116
116
username : ${{ secrets.SERVER_USER_NAME }}
117
117
host : ${{ secrets.LIVE_SERVER_IP }}
118
118
key : ${{ secrets.SSH_KEY }}
119
- script_stop : true
120
119
script : |
121
120
if [ $(sudo docker ps -a -q -f name=${{env.CURRENT_UPSTREAM}}) ]; then
122
121
sudo docker stop ${{env.CURRENT_UPSTREAM}}
You can’t perform that action at this time.
0 commit comments