Trying fixes for package installation permission issue. #2
Workflow file for this run
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-git-pages-template | |
on: | |
push: | |
branches: | |
- feature/learning-github-actions | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update | |
- run: sudo apt-get install -y --no-install-recommends --no-install-suggests curl wget zip unzip ca-certificates git python3-pip python3-dev | |
- run: pip install --break-system-packages poetry==1.7.1 | |
- run: poetry install | |
- run: poetry run mkdocs gh-deploy --strict --verbose --force --clean |