Skip to content

Commit 0325d99

Browse files
committed
Workflow fixes
- Fix typo in 'paths-ignore' - Add back 'buildDistribution' to demo job summary
1 parent d0f2f03 commit 0325d99

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.github/workflows/ci-check-and-unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- 'main'
77
- 'release/**'
8-
paths_ignore:
8+
paths-ignore:
99
- 'dist/**'
1010
pull_request:
1111

.github/workflows/ci-codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- 'main'
77
- 'release/**'
8-
paths_ignore:
8+
paths-ignore:
99
- 'dist/**'
1010
schedule:
1111
- cron: '25 23 * * 2'

.github/workflows/ci-init-script-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- 'main'
77
- 'release/**'
8-
paths_ignore:
8+
paths-ignore:
99
- 'dist/**'
1010
pull_request:
1111
paths:

.github/workflows/ci-update-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- 'main'
88
- 'release/**'
9-
paths_ignore:
9+
paths-ignore:
1010
- 'dist/**'
1111

1212
permissions:

.github/workflows/demo-job-summary.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@ on:
44
workflow_dispatch:
55

66
jobs:
7+
build-distribution:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout sources
11+
uses: actions/checkout@v4
12+
- name: Build and upload distribution
13+
uses: ./.github/actions/build-dist
14+
715
many-gradle-builds:
16+
needs: build-distribution
817
runs-on: ubuntu-latest
918
steps:
1019
- name: Checkout sources

0 commit comments

Comments
 (0)