.github: tests: add bootloader FOTA test and pytest_args filter input
#38
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
| name: Create documentation bundle | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| workflow_dispatch: | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| jobs: | |
| create-zoomin-doc-bundle: | |
| name: Create zoomin documentation bundle | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Copy documentation properties | |
| run: cp zoomin/* . | |
| - name: Create zip file | |
| run: | | |
| zip -r asset-tracker-template.zip \ | |
| docs/* mkdocs.yml custom.properties tags.yml | |
| - name: Upload documentation artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: asset-tracker-template | |
| path: asset-tracker-template.zip | |
| retention-days: 7 | |
| create-ft-bundle: | |
| name: Create ft documentation bundle | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create zip file | |
| run: | | |
| zip -r asset-tracker-template-ft.zip \ | |
| docs/* mkdocs.yml | |
| - name: Upload documentation artifact | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: asset-tracker-template-ft | |
| path: asset-tracker-template-ft.zip | |
| retention-days: 7 |