Skip to content

Commit ab1bd70

Browse files
committed
test
1 parent 47d4329 commit ab1bd70

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/build.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
merge_group:
9+
pull_request:
10+
branches:
11+
- main
12+
13+
jobs:
14+
15+
changed-files:
16+
runs-on: ubuntu-latest
17+
name: setup-build
18+
19+
permissions:
20+
pull-requests: read
21+
contents: read
22+
23+
outputs:
24+
matrix: ${{ steps.build-files.outputs.DHI_CHANGED_FILES }}
25+
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29+
30+
- name: Get all changed files
31+
id: changed-files
32+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
33+
with:
34+
filters: |
35+
all:
36+
added|modified:
37+
- 'image/**/*'
38+
- 'package/**/*'
39+
list-files: json
40+
41+

0 commit comments

Comments
 (0)