test
Some checks failed
Gradle Build on PR / call-publish (pull_request) Failing after 0s
Publish Snapshot / dev-publish (push) Successful in 2m14s

This commit was merged in pull request #3.
This commit is contained in:
2025-09-15 10:54:06 +02:00
parent 9ce16232f9
commit b05fd1f003
2 changed files with 26 additions and 18 deletions

View File

@@ -7,20 +7,28 @@ on:
types: [opened, synchronize, reopened]
jobs:
gradle-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
ref: ${{ inputs.BRANCH_REFERENCE }}
token: ${{ secrets.CI_BOT_TOKEN }}
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
call-publish:
uses: aura-ascend/common-workflows/.gitea/workflows/build.yaml@master
with:
JAVA_VERSION: 17
secrets: inherit
- name: Run Gradle Build
run: ./gradlew build
# gradle-build:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# with:
# fetch-depth: 1
# ref: ${{ inputs.BRANCH_REFERENCE }}
# token: ${{ secrets.CI_BOT_TOKEN }}
# - name: Set up JDK
# uses: actions/setup-java@v4
# with:
# distribution: temurin
# java-version: 17
#
# - name: Run Gradle Build
# run: ./gradlew build

View File

@@ -8,8 +8,8 @@ on:
jobs:
dev-publish:
if: |
!startsWith(github.event.head_commit.message, '[RELEASE]')
# if: |
# !startsWith(github.event.head_commit.message, '[RELEASE]')
uses: aura-ascend/common-workflows/.gitea/workflows/publish-artifact.yaml@master
with:
JAVA_VERSION: 17