cmake-single-platform.yml 743 B

123456789101112131415161718192021222324252627282930313233
  1. name: Build documentation and pack
  2. on:
  3. workflow_dispatch:
  4. push:
  5. branches: [ developing ]
  6. pull_request:
  7. branches: [ developing ]
  8. release:
  9. types: [published]
  10. jobs:
  11. pack:
  12. name: Generate pack
  13. runs-on: ubuntu-20.04
  14. steps:
  15. - uses: actions/checkout@v3
  16. with:
  17. fetch-depth: 0
  18. - name: Fetch tags
  19. if: ${{ github.event_name == 'release' }}
  20. run: |
  21. git fetch --tags --force
  22. - name: get submodules
  23. run: |
  24. git submodule update --init
  25. - uses: Open-CMSIS-Pack/gen-pack-action@main
  26. with:
  27. doxygen-version: 1.9.2
  28. packchk-version: 1.3.96
  29. gen-pack-script: ./gen_pack.sh
  30. gen-pack-output: ./output