Skip to content

Commit

Permalink
Create workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
MGaetan89 committed Apr 15, 2024
1 parent ad00deb commit da6b383
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Deploy website"

on:
push:
branches: [ new_website ]

jobs:
deploy_website:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.x

- name: Install necessary tools
run: pip install mkdocs mkdocs-material

- name: Deploy website
uses: mkdocs gh-deploy

0 comments on commit da6b383

Please sign in to comment.