Skip to content

Commit

Permalink
Workflow fixes
Browse files Browse the repository at this point in the history
- Fix typo in 'paths-ignore'
- Add back 'buildDistribution' to demo job summary
  • Loading branch information
bigdaz committed Apr 12, 2024
1 parent d0f2f03 commit 0325d99
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-check-and-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
paths-ignore:
- 'dist/**'
pull_request:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
paths-ignore:
- 'dist/**'
schedule:
- cron: '25 23 * * 2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-init-script-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
paths-ignore:
- 'dist/**'
pull_request:
paths:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-update-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
paths-ignore:
- 'dist/**'

permissions:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/demo-job-summary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,16 @@ on:
workflow_dispatch:

jobs:
build-distribution:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Build and upload distribution
uses: ./.github/actions/build-dist

many-gradle-builds:
needs: build-distribution
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand Down

0 comments on commit 0325d99

Please sign in to comment.