Skip to content

Fix layout and update some info #12

Fix layout and update some info

Fix layout and update some info #12

Workflow file for this run

# This is a basic workflow to help you get started with Actions - you can change the name to be more reflective of your Action
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push request events but only for the main branch
push:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allows A Webhook to be called which will run the Action. Use this for example from WordPress with the GatsbyJS plugin.
repository_dispatch:
types: [publish_blog]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out latest code
uses: actions/checkout@v2
# Grab the required version of NodeJS
- name: Set Node.js
uses: actions/[email protected]
with:
node-version: 18.x
# Install all the Node dependencies for Gatsby, using your package.json file.
- name: Install Dependencies
run: npm i --save
# Speaks for itself no?
- name: Build Gatsby Site
run: npm run build
# This was the hardest part for me to figure out - see article for more details
- name: Install Deployment SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{secrets.DEPLOY_KEY}}
known_hosts: ${{secrets.ssh_host}}
# Finally, deploy it to your very own server
- name: Deploy To Live
run: rsync -avzh --delete -e 'ssh -o StrictHostKeyChecking=no' public/* --rsync-path='mkdir -p ${{secrets.target_dir}} && rsync' ${{secrets.ssh_user}}@${{secrets.ssh_host}}:${{secrets.target_dir}}