Skip to content

Commit 5eec4a7

Browse files
committed
added build pack action
1 parent 42cd02f commit 5eec4a7

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/pack.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build pack
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
release:
8+
types: [published]
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
pack:
16+
name: Generate pack
17+
runs-on: ubuntu-22.04
18+
steps:
19+
- uses: actions/checkout@v3
20+
with:
21+
fetch-depth: 0
22+
23+
- name: Fetch tags
24+
if: github.event_name == 'release'
25+
run: |
26+
git fetch --tags --force
27+
28+
- uses: Open-CMSIS-Pack/gen-pack-action@main
29+
with:
30+
doxygen-version: 1.9.6
31+
packchk-version: 1.3.98
32+
gen-pack-script: ./gen_pack.sh
33+
gen-pack-output: ./output

0 commit comments

Comments
 (0)