Skip to content

Create 2024-03-10-sustain.md #214

Create 2024-03-10-sustain.md

Create 2024-03-10-sustain.md #214

Workflow file for this run

name: build-and-deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
uses: actions/setup-node@v2
with:
node-version: '>=18.17.0'
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm install
npm run test
npm run build
- name: Add .nojekyll file
run: touch ./out/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages # The branch the action should deploy to.
folder: out # The folder the action should deploy.