Skip to content

Move to maven central. #64

Move to maven central.

Move to maven central. #64

Workflow file for this run

name: ci
on: [push]
jobs:
compile:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/[email protected]
- name: Set up Java
id: setup-jre
uses: actions/[email protected]
with:
java-version: "11"
architecture: x64
distribution: microsoft
- name: Compile
run: ./gradlew compileJava
- name: Test - Start Compose
run: docker compose up -d
working-directory: tests
- name: Test - RUN
run: ./gradlew test
env:
CONFIG__WAIT: 60
CONFIG__SERVER__URL: http://localhost:8080
working-directory: .
- name: Test - Dump docker logs on failure
if: failure()
uses: jwalton/[email protected]
with:
images: 'squidex/squidex,squidex/resizer'
tail: '100'
- name: Test - Cleanup
if: always()
run: docker compose down
working-directory: tests
- name: Publish to maven
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
run: |
./gradlew publishAllPublicationsToMavenCentralRepository
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_PRIVATE_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}