Workflow fixes

- Fix typo in 'paths-ignore'
- Add back 'buildDistribution' to demo job summary
This commit is contained in:
daz 2024-04-12 09:55:46 -06:00
parent d0f2f0387e
commit bc49e1fe7d
No known key found for this signature in database
5 changed files with 13 additions and 4 deletions

View File

@ -5,7 +5,7 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
paths-ignore:
- 'dist/**'
pull_request:

View File

@ -5,7 +5,7 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
paths-ignore:
- 'dist/**'
schedule:
- cron: '25 23 * * 2'

View File

@ -5,7 +5,7 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
paths-ignore:
- 'dist/**'
pull_request:
paths:

View File

@ -6,7 +6,7 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
paths-ignore:
- 'dist/**'
permissions:

View File

@ -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