Skip to content

Commit

Permalink
Add GitHub actions for auto deploying the site
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh5 committed May 7, 2022
1 parent f6f9dae commit fe593e1
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Build and Release

on:
push:
branches: [ "master" ]
paths-ignore:
- ".github/**"
- "!.github/workflows/**"
pull_request:
branches: [ master ]

jobs:
Test-Build:
if: github.ref != 'refs/heads/master'
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
# Setup NodeJS
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
# Install
- name: Install
id: install-step
run: |
yarn install --frozen-lockfile
# Build
- name: Build
id: build-step
run: |
yarn build
Deploy:
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/master'
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
# Setup NodeJS
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
# Install
- name: Install
id: install-step
run: |
yarn install --frozen-lockfile
# Build
- name: Build
id: build-step
run: |
yarn build
# Publish
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build

0 comments on commit fe593e1

Please sign in to comment.