Skip to content

Commit

Permalink
feat: introduce advanced-html (#94)
Browse files Browse the repository at this point in the history
* feat: introduce advanced-html

* docs: md lint

* test: add test for advanced html

* docs: fix

* cicd: add action for github pages

---------

Co-authored-by: fabianfgross <[email protected]>
  • Loading branch information
very-doge-wow and fabianfgross authored May 28, 2024
1 parent 88b72ed commit ede1ca6
Show file tree
Hide file tree
Showing 6 changed files with 1,159 additions and 19 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy Example to GitHub Pages

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: Install Pipenv
run: pip install pipenv

- name: Install dependencies
run: pipenv install

- name: Run Python script
run: pipenv run python stella.py -fh -ah -hcp EXAMPLE/prometheus -o ./index.html

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./
Loading

0 comments on commit ede1ca6

Please sign in to comment.