forked from tfcoop/www_duniayetu
25 lines
634 B
YAML
25 lines
634 B
YAML
name: www2.ourzone.ourworld.tf
|
|
on:
|
|
push:
|
|
branches: [ development ]
|
|
|
|
jobs:
|
|
job_one:
|
|
name: Deploy
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: pushing latest change on www2.ourzone.ourworld.tf
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: www2.ourzone.ourworld.tf
|
|
username: webuser
|
|
key: ${{ secrets.TF_SECRET }}
|
|
port: 34022
|
|
script: |
|
|
cd websites/www2/www_ourzone/
|
|
git log -1
|
|
git fetch
|
|
git reset --hard origin/development
|
|
sed -i "s/https:\/\/ourzone.ourworld.tf/https:\/\/www2.ourzone.ourworld.tf/g" config.toml
|
|
./build.sh
|