generated from liquibase/liquibase-extension-example
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(workflows): add nightly build workflow to build the extension ag…
…ainst the latest Liquibase artifact feat(workflows): add java versions 11, 17, and 18 to the build-test job in test workflow for compatibility testing
- Loading branch information
jandroav
committed
Oct 26, 2023
1 parent
6d78763
commit bbd6866
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This workflow will build the extension against the latest Liquibase artifact | ||
name: "Nightly build" | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 7 * * 1-5' | ||
|
||
jobs: | ||
nightly-build: | ||
uses: liquibase/build-logic/.github/workflows/[email protected] | ||
with: | ||
nightly: true | ||
java: '[11, 17, 18]' | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,6 @@ on: | |
jobs: | ||
build-test: | ||
uses: liquibase/build-logic/.github/workflows/[email protected] | ||
secrets: inherit | ||
secrets: inherit | ||
with: | ||
java: '[11, 17, 18]' |