adding some text to blog and spacing #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
tab: | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: install | ||
run: npm i --legacy-peer-deps | ||
- name: build | ||
run: npm run build | ||
env: | ||
BASE_PATH: /ahammer/ | ||
- name: create .nojekyll | ||
run: touch .output/public/.nojekyll | ||
- name: deploy pages | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: .output/public |