Skip to content

update python zoomin script #6

update python zoomin script

update python zoomin script #6

Workflow file for this run

name: Create Zoomin bundle
on:
pull_request:
types: [synchronize, opened, reopened]
paths:
- '.github/workflows/zoomin.yml'
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/* .
- name: Create zip file
run: |
zip -r nrf-connect-ble.zip \
docs mkdocs.yml custom.properties tags.yml
- name: Upload documentation artifact
uses: actions/upload-artifact@v3
with:
name: nrf-connect-ble
path: nrf-connect-ble.zip
retention-days: 7
jobs:

Check failure on line 33 in .github/workflows/zoomin.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/zoomin.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
create-zoomin-bundle:
name: Create Zoomin bundle
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Copy zoomin properties
run: cp doc/zoomin/* .
- name: Create zip file and move files to a different directory
run: |
cp -r doc/docs/* docs/ \
cp -r doc/mkdocs.yml docs/ \
zip -r nrf-connect-ble.zip \
docs/ custom.properties tags.yml
- name: Upload documentation artifact
uses: actions/upload-artifact@v3
with:
name: nrf-connect-ble
path: nrf-connect-ble.zip
retention-days: 7