Merge pull request #20 from pocketblue/qualcomm-sdm845 #31
This file contains hidden or 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: | |
| workflow_dispatch: {} | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: '3.14' | |
| - run: | | |
| uv sync | |
| uv run mkdocs build --clean | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: site | |
| name: wiki | |
| - name: deploy | |
| env: | |
| GH_TOKEN: ${{ secrets.TOKEN }} | |
| run: | | |
| gh workflow run --repo=pocketblue/pocketblue.github.io deploy.yml |