Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions .github/workflows/main-build-and-deploy-oss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,32 @@ jobs:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# maven-version: ${{ env.MAVEN_VERSION }}

#update-version:
# name: Update Version
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# token: ${{ secrets.GH_TOKEN }}
# - name: Update version
# uses: ./.github/actions/newrelease
# with:
# java-version: ${{ env.JAVA_VERSION }}
# maven-version: ${{ env.MAVEN_VERSION }}
# - name: Upload Changed Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: root-new-version
# path: .
# include-hidden-files: true
# retention-days: 1
update-version:
name: Update Version
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- name: Update version
uses: ./.github/actions/newrelease
with:
java-version: ${{ env.JAVA_VERSION }}
maven-version: ${{ env.MAVEN_VERSION }}
- name: Upload Changed Artifacts
uses: actions/upload-artifact@v4
with:
name: root-new-version
path: .
include-hidden-files: true
retention-days: 1

build:
#name: Build and Sonar Scan
name: Build
runs-on: ubuntu-latest
#needs: update-version
needs: update-version
steps:
- name: Download artifact
uses: actions/download-artifact@v4
Expand Down
Loading