File tree Expand file tree Collapse file tree 4 files changed +21
-3
lines changed
Expand file tree Collapse file tree 4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 6262 source : " ./docker-compose.dev.yml"
6363 target : " /home/${{ secrets.DEV_USERNAME }}/solid-connection-dev/"
6464
65+ - name : Copy alloy config file to remote
66+ uses : appleboy/scp-action@master
67+ with :
68+ host : ${{ secrets.DEV_HOST }}
69+ username : ${{ secrets.DEV_USERNAME }}
70+ key : ${{ secrets.DEV_PRIVATE_KEY }}
71+ source : " ./docs/config.alloy"
72+ target : " /home/${{ secrets.DEV_USERNAME }}/solid-connection-dev/"
73+
6574 - name : Run docker compose
6675 uses : appleboy/ssh-action@master
6776 with :
Original file line number Diff line number Diff line change 6161 key : ${{ secrets.PRIVATE_KEY }}
6262 source : " ./docker-compose.prod.yml"
6363 target : " /home/${{ secrets.USERNAME }}/solid-connect-server/"
64-
64+
65+ - name : Copy alloy config file to remote
66+ uses : appleboy/scp-action@master
67+ with :
68+ host : ${{ secrets.HOST }}
69+ username : ${{ secrets.USERNAME }}
70+ key : ${{ secrets.PRIVATE_KEY }}
71+ source : " ./docs/config.alloy"
72+ target : " /home/${{ secrets.USERNAME }}/solid-connect-server/"
73+
6574 - name : Run docker compose
6675 uses : appleboy/ssh-action@master
6776 with :
Original file line number Diff line number Diff line change @@ -41,6 +41,6 @@ services:
4141 - " 12345:12345"
4242 volumes :
4343 - ./logs:/var/log/spring
44- - ./docs/ config.alloy:/etc/alloy/config.alloy:ro
44+ - ./config.alloy:/etc/alloy/config.alloy:ro
4545 environment :
4646 - ALLOY_ENV=dev
Original file line number Diff line number Diff line change @@ -40,6 +40,6 @@ services:
4040 - " 12345:12345"
4141 volumes :
4242 - ./logs:/var/log/spring
43- - ./docs/ config.alloy:/etc/alloy/config.alloy:ro
43+ - ./config.alloy:/etc/alloy/config.alloy:ro
4444 environment :
4545 - ALLOY_ENV=production
You can’t perform that action at this time.
0 commit comments