Merge pull request #21 from io7m-com/dependabot/maven/develop/io.heli… #118
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
# | |
# Automatically generated: DO NOT EDIT. | |
# | |
# Generation code: https://www.github.com/io7m-com/.github/ | |
# Workflow profile: Core | |
# | |
name: main.linux.temurin.lts | |
on: | |
push: | |
branches: [ develop, feature/*, release/* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
- name: Collect project version | |
id: project_version | |
run: java .github/workflows/Tools.java ShowProjectVersion pom.xml >> "$GITHUB_OUTPUT" | |
- name: Collect project snapshot | |
id: project_is_snapshot | |
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT" | |
- name: Build | |
run: mvn --batch-mode --strict-checksums --errors clean verify site | |
- name: Upload test logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: test-logs | |
path: ./com.io7m.hibiscus.tests/target/surefire-reports | |
- name: Coverage | |
uses: codecov/codecov-action@v4.4.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: com.io7m.hibiscus.tests/target/site/jacoco-aggregate/jacoco.xml | |
- name: Log in to Quay.io. | |
uses: redhat-actions/podman-login@v1.7 | |
with: | |
username: ${{ secrets.QUAY_IO_USERNAME }} | |
password: ${{ secrets.QUAY_IO_PASSWORD }} | |
registry: 'quay.io' | |
- name: Deploy snapshot | |
if: ${{ steps.project_is_snapshot.outputs.IO7M_PROJECT_VERSION_IS_SNAPSHOT == 'true' }} | |
env: | |
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }} | |
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} | |
run: .github/workflows/deploy-snapshot.sh | |