Document the changes in templates. #43
Workflow file for this run
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: ci | |
on: [push] | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
id: setup-jre | |
uses: actions/setup-java@v1 | |
with: | |
java-version: "11" | |
architecture: x64 | |
- name: Compile | |
run: ./gradlew compileJava | |
test: | |
needs: [ compile ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
id: setup-jre | |
uses: actions/setup-java@v1 | |
with: | |
java-version: "11" | |
architecture: x64 | |
- name: Test - Start Compose | |
run: docker-compose up -d | |
working-directory: tests | |
- name: Test | |
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 | |
publish: | |
needs: [ compile, test ] | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
id: setup-jre | |
uses: actions/setup-java@v1 | |
with: | |
java-version: "11" | |
architecture: x64 | |
- name: Publish to maven | |
run: | | |
./gradlew publish | |
env: | |
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
MAVEN_PUBLISH_REGISTRY_URL: "https://s01.oss.sonatype.org/content/repositories/releases/" |