diff --git a/.github/workflows/markdown-to-pages-action.yml b/.github/workflows/markdown-to-pages-action.yml new file mode 100644 index 0000000..6d80781 --- /dev/null +++ b/.github/workflows/markdown-to-pages-action.yml @@ -0,0 +1,37 @@ +name: Pages +on: + workflow_dispatch: + push: + # tags: + # - v[0-9]+.* +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ./ + with: + files: | + README.md + test/README.md + test/nested/readme.md + test/nested/twice/README.md + out_path: out + token: ${{ secrets.GITHUB_TOKEN }} + - run: cp -r ./images/ ./out/images/ + - uses: actions/upload-pages-artifact@v3 + with: + path: out + + deploy: + needs: build + runs-on: ubuntu-latest + permissions: + pages: write + id-token: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - uses: actions/deploy-pages@v4 + id: deployment