From 99c42417185d30d174b3382ef84a2e7d7418b41b Mon Sep 17 00:00:00 2001 From: Pieter Colpaert Date: Fri, 22 Mar 2024 16:07:46 +0100 Subject: [PATCH] Change github actions flow to also include the turtle file --- .github/workflows/gh-pages-workflow.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages-workflow.yml b/.github/workflows/gh-pages-workflow.yml index f49a7fe..c59f41d 100644 --- a/.github/workflows/gh-pages-workflow.yml +++ b/.github/workflows/gh-pages-workflow.yml @@ -12,12 +12,18 @@ jobs: contents: write steps: - uses: actions/checkout@v3 + - name: Copy to gh pages + uses: planetoftheweb/copy-to-branches@v1 + env: + key: main + exclude: work 99_target + files: README.md - uses: w3c/spec-prod@v2 with: TOOLCHAIN: bikeshed # Modify as appropriate - GH_PAGES_BRANCH: main + #GH_PAGES_BRANCH: gh-pages # if your doc isn’t in the root folder, # or Bikeshed otherwise can’t find it: @@ -27,3 +33,7 @@ jobs: # with .html extension instead, # but if you want to customize it: DESTINATION: index.html + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: . # The folder the action should deploy.