File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change 11
11
- ' .github/workflows/sentry.yml'
12
12
13
13
jobs :
14
- check-changes :
15
- name : Check changed files
16
- runs-on : ubuntu-latest
17
- outputs :
18
- voicevox_engine : ${{ steps.filter.outputs.voicevox_engine }}
19
- workflow : ${{ steps.filter.outputs.workflow }}
20
- steps :
21
- - name : Checkout repository
22
- uses : actions/checkout@v4
23
- with :
24
- fetch-depth : 0 # 全履歴を取得して変更を正確に検出
25
-
26
- - name : Check changed files
27
- uses : dorny/paths-filter@v3
28
- id : filter
29
- with :
30
- filters : |
31
- voicevox_engine:
32
- - 'voicevox_engine/**'
33
- workflow:
34
- - '.github/workflows/sentry.yml'
35
-
36
14
create-sentry-release :
37
15
name : Create Sentry Release
38
- needs : check-changes
39
16
runs-on : ubuntu-latest
40
- if : needs.check-changes.outputs.voicevox_engine == 'true' || needs.check-changes.outputs.workflow == 'true' || startsWith(github.ref, 'refs/tags/')
41
17
steps :
42
18
- name : Checkout repository
43
19
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments