diff options
author | Marvin Borner | 2023-07-06 22:03:08 +0200 |
---|---|---|
committer | Marvin Borner | 2023-07-06 22:31:46 +0200 |
commit | 6afe0a6961a959454d08f89fcfbb8a545902aa17 (patch) | |
tree | cdd4abe3b22addd31e2cd1b2fa727824267c1d30 /.github/workflows |
Initial commit
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/gen.yml | 52 |
1 files changed, 52 insertions, 0 deletions
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 |