Skip to content

Commit

Permalink
Adding comments to github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Danura30082 committed Nov 29, 2024
1 parent 66c8d9e commit ea6fdcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
uses: actions/setup-python@v2 # sets up a Python environment
with:
python-version: '3.x'
- name: Install MkDocs
- name: Install MkDocs # installs MkDocs
run: pip install mkdocs
- name: Deploy with MkDocs
- name: Deploy with MkDocs # deploys the site using MkDocs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # allows the workflow to access the repository otherwise it will fail due to laking write permissions
run: mkdocs gh-deploy --force

0 comments on commit ea6fdcb

Please sign in to comment.