Skip to content

Commit

Permalink
feat(workflows): add nightly build workflow to build the extension ag…
Browse files Browse the repository at this point in the history
…ainst the latest Liquibase artifact (#233)

feat(workflows): add java versions 11, 17, and 18 to the build job in the test workflow
  • Loading branch information
jandroav committed May 22, 2024
1 parent c44544d commit eb2eea6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build-nightly.yml
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/os-extension-test.yml@v0.5.5
with:
nightly: true
java: '[11, 17, 18]'
secrets: inherit

0 comments on commit eb2eea6

Please sign in to comment.