bump code generator release versions #1244
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
name: Plugin CI | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
paths-ignore: | |
- 'morpheus-plugin-api/**' | |
- '.github/workflows/build-plugin-api.yml' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
# Setup JDK 17 | |
- name: Set up JDK 1.17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.17 | |
- name: test | |
run: ./gradlew test --no-daemon | |
- name: javadoc | |
run: ./gradlew javadoc --no-daemon | |
- name: assemble | |
run: ./gradlew assemble --no-daemon | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: plugin-artifacts | |
path: plugins/ | |