Merge pull request #123 from joshkotrous/profiles-list #155
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: Documentation | |
# on: | |
# push: | |
# branches: | |
# - main | |
# jobs: | |
# generate_documentation: | |
# name: Generate Documentation | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# with: | |
# ref: main | |
# - name: Set up Python | |
# uses: actions/setup-python@v2 | |
# with: | |
# python-version: 3.12 | |
# - name: Install dependencies | |
# run: | | |
# pip install -r requirements.txt | |
# - name: Run DRF Spectacular | |
# run: | | |
# python manage.py spectacular --file schema.yml | |
# - name: Commit documentation changes | |
# run: | | |
# git config --local user.email "[email protected]" | |
# git config --local user.name "GitHub Action" | |
# git add schema.yml | |
# git commit -m "Generate documentation" | |
# git push https://@github.com/joshkotrous/devume-backend.git main |