Move domain

This commit is contained in:
Erick Ruiz de Chavez 2021-08-19 10:28:49 -04:00
parent fc0108d7e8
commit 16d501458b
No known key found for this signature in database
GPG key ID: 18853A33FA62DDC9
2 changed files with 1 additions and 28 deletions

View file

@ -23,5 +23,5 @@ jobs:
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
source: "_site"
target: "/home/${{ secrets.USERNAME }}/erickruizdechavez.com"
target: "/home/${{ secrets.USERNAME }}/erch.co"
strip_components: 1

View file

@ -1,27 +0,0 @@
name: Build and Deploy Staging Site
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm ci
- run: npm run build --if-present
- name: deploy site
uses: appleboy/scp-action@v0.1.1
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
source: "_site"
target: "/home/${{ secrets.USERNAME }}/beta.erickruizdechavez.com"
strip_components: 1