chore(deps): update dependencies python:3.13-alpine3.20 docker digest… #46
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
name: Deploy Example to GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# check out repo | |
- uses: actions/checkout@v4 | |
# install all deps in pipenv | |
- name: install_deps | |
uses: VaultVulp/[email protected] | |
with: | |
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 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./ |