Skip to content

Commit

Permalink
flow?
Browse files Browse the repository at this point in the history
  • Loading branch information
shanesmith committed Feb 29, 2024
1 parent 6ffd472 commit e02382c
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/page.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Github Pages

on:
push:
branches:
- master
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- shell: bash
run: mkdir -p _site

- uses: jaywcjlove/markdown-to-html-cli@main
with:
source: README.md
output: _site/index.html

- uses: actions/upload-pages-artifact@v3

deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v4

0 comments on commit e02382c

Please sign in to comment.