Skip to content

General bug fixes and upgrade #6

General bug fixes and upgrade

General bug fixes and upgrade #6

Workflow file for this run

name: Build & Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js v18
uses: actions/setup-node@v3
with:
node-version: "18.16.1"
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Build and Deploy
env:
NODE_ENV: production
run: |
yarn build
echo "blackjack.souvlaki.me" > ./dist/CNAME
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist