Update main.yml #2
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
on: [push] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
name: Publish to Cloudflare Pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Build | |
run: | | |
pipenv install | |
cd docs | |
pipenv run python prepare.py | |
pipenv run make html | |
# Run a build step here if your project requires | |
- name: Publish to Cloudflare Pages | |
uses: cloudflare/pages-action@1 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: aa51efe21ac05b72c5241fdf3f2db6ba | |
projectName: mibs-pysnmp-com | |
directory: ./docs/_build/html | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} |