From 6afe0a6961a959454d08f89fcfbb8a545902aa17 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 6 Jul 2023 22:03:08 +0200 Subject: Initial commit --- .github/workflows/gen.yml | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/gen.yml (limited to '.github/workflows/gen.yml') diff --git a/.github/workflows/gen.yml b/.github/workflows/gen.yml new file mode 100644 index 0000000..d7f268f --- /dev/null +++ b/.github/workflows/gen.yml @@ -0,0 +1,52 @@ +name: Deploy to pages + +on: + push: + branches: + - main + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install node + uses: actions/setup-node@v3 + with: + node-version: 16 + - name: Install pandoc + run: | + wget https://github.com/jgm/pandoc/releases/download/3.1.2/pandoc-3.1.2-1-amd64.deb + sudo dpkg -i pandoc* + - name: Install packages + run: | + sudo npm i -g mermaid-filter + - name: Setup Pages + id: pages + uses: actions/configure-pages@v3 + - name: Generate files + run: ./gen + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + path: ./pub + + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 -- cgit v1.2.3