-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: introduce advanced-html * docs: md lint * test: add test for advanced html * docs: fix * cicd: add action for github pages * cicd: add action for github pages * cicd: test in feature branch * docs --------- Co-authored-by: fabianfgross <[email protected]>
- Loading branch information
1 parent
ede1ca6
commit 9ddd1e4
Showing
2 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,22 +10,18 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
# check out repo | ||
- uses: actions/checkout@v4 | ||
# install all deps in pipenv | ||
- name: install_deps | ||
uses: VaultVulp/[email protected] | ||
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 | ||
command: install | ||
# run stella | ||
- name: install_deps | ||
uses: VaultVulp/[email protected] | ||
with: | ||
command: run python stella.py -fh -ah -hcp EXAMPLE/prometheus -o ./index.html | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters