Skip to content

Update NWalls.md

Update NWalls.md #72

Workflow file for this run

name: Publish GitHub Pages
on: [push, workflow_dispatch]
jobs:
deploy:
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Download theme
uses: actions/checkout@v4
with:
repository: peasoft/jekyll-theme-H2O-plus
- name: Checkout repo
uses: actions/checkout@v4
with:
path: _repo
- run: cp -rf _repo/* .
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- run: bundle exec jekyll build
- uses: actions/upload-pages-artifact@v3
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4