doc: add programming matrix table #11
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: Create Zoomin bundle | |
on: | |
pull_request: | |
types: [synchronize, opened, reopened] | |
paths: | |
- 'doc/**' | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
create-zoomin-bundle: | |
name: Create Zoomin bundle | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy zoomin properties | |
run: | | |
cp doc/zoomin/custom.properties doc/ \ | |
&& cp doc/zoomin/tags.yml doc/ | |
- name: Create zip file | |
run: | | |
cd doc/ \ | |
&& zip -r ../nrf-connect-programmer.zip \ | |
docs/* mkdocs.yml custom.properties tags.yml | |
- name: Upload documentation artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nrf-connect-programmer | |
path: nrf-connect-programmer.zip | |
retention-days: 7 |