X-data is not added to content when it's created #9952 #7938
Workflow file for this run
This file contains hidden or 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: Gradle Build | |
| on: | |
| push: | |
| concurrency: build-${{ github.ref }} | |
| jobs: | |
| publish_vars: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| publish: ${{ steps.publish_vars.outputs.release != 'true' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/7.')) }} | |
| repo: ${{ steps.publish_vars.outputs.repo }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Get publishing variables | |
| id: publish_vars | |
| uses: enonic/release-tools/publish-vars@master | |
| env: | |
| PROPERTIES_PATH: './gradle.properties' | |
| build: | |
| runs-on: ubuntu-latest | |
| needs: publish_vars | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.client_payload.ref || github.ref }} | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build with Gradle | |
| run: ./gradlew ci --scan | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Publish | |
| if: needs.publish_vars.outputs.publish == 'true' | |
| run: ./gradlew publish -Pcom.enonic.xp.app.production=true -PrepoKey=${{ needs.publish_vars.outputs.repo }} -PrepoUser=ci -PrepoPassword=${{ secrets.ARTIFACTORY_PASSWORD }} | |
| dispatch: | |
| needs: [ publish_vars, build ] | |
| strategy: | |
| matrix: | |
| repo: ["enonic/app-admin-home", "enonic/app-applications", "enonic/app-users", "enonic/app-standardidprovider", "enonic/app-xp-welcome" ] | |
| runs-on: ubuntu-latest | |
| if: needs.publish_vars.outputs.publish == 'true' | |
| steps: | |
| - name: Workflow Dispatch | |
| uses: benc-uk/workflow-dispatch@v1 | |
| with: | |
| token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
| repo: ${{ matrix.repo }} | |
| workflow: gradle.yml |