Skip to content

try upload without concurency for the deploy GitHub workflow #6

try upload without concurency for the deploy GitHub workflow

try upload without concurency for the deploy GitHub workflow #6

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/[email protected]
- name: Install depencies
run: yarn install
- name: Build website
run: yarn build
- name: Copy site to DigitalOcean
uses: garygrossgarten/[email protected]
with:
local: public
remote: ${{ secrets.SSH_PATH }}
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
privateKey: ${{ secrets.SSH_KEY }}