Skip to content

fix: Resized logo

fix: Resized logo #78

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 14
cache: npm
- run: npm install -D
- run: npm run build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: dist
keep_history: true
fqdn: godot.id # CNAME
jekyll: false # Solve website 404
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}