Skip to content

Commit

Permalink
Merge pull request #242 from SentryMan/ea-workflow
Browse files Browse the repository at this point in the history
Adds EA stable workflow
  • Loading branch information
SentryMan authored Jun 15, 2024
2 parents 883a38a + d59d324 commit ecbd513
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build

on: [push, workflow_dispatch]
on: [push, pull_request, workflow_dispatch]

jobs:
build:
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/jdk-ea-stable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

name: avaje-jsonb EA stable

on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '39 1 * * 1,3,5'

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: oracle-actions/setup-java@v1
with:
website: jdk.java.net
release: ea
version: stable
- name: Maven cache
uses: actions/cache@v3
env:
cache-name: maven-cache
with:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: Maven version
run: mvn --version
- name: Build with Maven
run: mvn package
1 change: 1 addition & 0 deletions .github/workflows/jdk-ea.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: JDK EA

on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '39 6 * * 1,3,5'
Expand Down

0 comments on commit ecbd513

Please sign in to comment.