Skip to content

remove the test from the deploy GitHub workflow #2

remove the test from the deploy GitHub workflow

remove the test from the deploy GitHub workflow #2

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4.2.2
- name: Install depencies
run: yarn install
- name: Build website
run: yarn build
- name: Copy site to DigitalOceab
uses: garygrossgarten/github-action-scp@0.9.0
with:
local: public
remote: ${{ secrets.SSH_PATH }}
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
privateKey: ${{ secrets.SSH_KEY }}
concurrency: 10
rmRemote: true
atomicPut: true