Skip to content

[Article] Creating new post about my unployment experience (#41) #30

[Article] Creating new post about my unployment experience (#41)

[Article] Creating new post about my unployment experience (#41) #30

Workflow file for this run

name: Build Eleventy
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/[email protected]
- name: Install dependencies
run: yarn
- name: Run build command
run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./_site
publish_branch: gh-pages