Skip to content

Commit

Permalink
Update and rename static.yml to build-and-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkBrines authored Oct 16, 2024
1 parent 2e9abb5 commit 78147c8
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
name: Build and deploy

on:
# Runs on pushes targeting the default branch
Expand Down Expand Up @@ -31,6 +31,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/[email protected]
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Build site
run: mkdocs build
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
Expand Down

0 comments on commit 78147c8

Please sign in to comment.