From f6507cf82eb4ef09a1de7a33712a05bfda9d9710 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 25 Jun 2025 12:04:32 +0100 Subject: [PATCH] Update .forgejo/workflows/release.yml --- .forgejo/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 4c177e0..2d2228e 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -62,12 +62,14 @@ jobs: # Install @Angular dependencies - name: Install frontend dependencies + if: false # DISABLED for testing. To check if backend build is also doing frontend. run: | cd src/main/webapp npm ci # Build the frontend - name: Build frontend + if: false # DISABLED for testing. To check if backend build is also doing frontend. run: | cd src/main/webapp npm run build @@ -136,13 +138,13 @@ jobs: # ## Update pom.xml ## # ## Calculate the new version string ## - name: Checkout main - if: false # DISABLED for testing + if: false # DISABLED for testing. DON't atually change master version uses: actions/checkout@v3 with: ref: master - name: Bump to next SNAPSHOT version - if: false # DISABLED for testing + if: false # DISABLED for testing. DON't atually change master version run: | # Extract the version from the ref, handling tags like v1.0.2 or branches like release/1.0.2 RAW_REF="${GITHUB_REF##*/}" # gets 'v1.0.2' or '1.0.2'