Skip to content

fix branch name in CI script, avoid snapshot publishing for release #1143

fix branch name in CI script, avoid snapshot publishing for release

fix branch name in CI script, avoid snapshot publishing for release #1143

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Java ${{ matrix.java }}
strategy:
# don't cancel remaining matrix steps on failure
fail-fast: false
matrix:
java: [11, 17, 21]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build
run: |
chmod +x gradlew
./gradlew assemble --no-daemon
- name: Test
env:
GH_ACTIONS: true
run: ./gradlew check --no-daemon
- name: Build coverage report
if: github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request'
run: ./gradlew jacocoTestReport --no-daemon
- uses: codecov/codecov-action@v4
if: github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request'
with:
files: build/reports/jacoco/test/jacocoTestReport.xml
flags: LINUX
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
- name: Extract Project version
id: project
run: echo "version=$(./gradlew properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')" >> $GITHUB_OUTPUT
# publish snapshot after successful tests (only for snapshots)
publish:
if: github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(steps.project.outputs.version, '-SNAPSHOT')

Check failure on line 58 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 58, Col: 9): Unrecognized named-value: 'steps'. Located at position 84 within expression: github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(steps.project.outputs.version, '-SNAPSHOT') .github/workflows/CI.yml (Line: 64, Col: 9): Unrecognized named-value: 'steps'. Located at position 84 within expression: github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(steps.project.outputs.version, '-SNAPSHOT')
needs: build
uses: ./.github/workflows/publish-snapshot.yml
# run examples with published snapshot (only for snapshots)
examples:
if: github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(steps.project.outputs.version, '-SNAPSHOT')
needs: publish
uses: ./.github/workflows/examples-CI.yml