Skip to content

first run of deploy script #1

first run of deploy script

first run of deploy script #1

Workflow file for this run

name: Deploy to stage
on:
push:
branches:
- develop
jobs:
deploy-to-stage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- run: 'echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- run: 'composer -V'
- run: 'php -v'
- run: 'whoami'
- run: 'pwd'
- run: 'ssh mateuszr84@mateuszr84.atthost24.pl -p 6022'
- run: 'composer create-project october/october /home/mateuszr84/websites/deploytest'