Update .forgejo/workflows/release.yml
Some checks failed
Release / release (push) Failing after 17m26s
Some checks failed
Release / release (push) Failing after 17m26s
This commit is contained in:
parent
d1801774c0
commit
f6507cf82e
1 changed files with 4 additions and 2 deletions
|
@ -62,12 +62,14 @@ jobs:
|
||||||
|
|
||||||
# Install @Angular dependencies
|
# Install @Angular dependencies
|
||||||
- name: Install frontend dependencies
|
- name: Install frontend dependencies
|
||||||
|
if: false # DISABLED for testing. To check if backend build is also doing frontend.
|
||||||
run: |
|
run: |
|
||||||
cd src/main/webapp
|
cd src/main/webapp
|
||||||
npm ci
|
npm ci
|
||||||
|
|
||||||
# Build the frontend
|
# Build the frontend
|
||||||
- name: Build frontend
|
- name: Build frontend
|
||||||
|
if: false # DISABLED for testing. To check if backend build is also doing frontend.
|
||||||
run: |
|
run: |
|
||||||
cd src/main/webapp
|
cd src/main/webapp
|
||||||
npm run build
|
npm run build
|
||||||
|
@ -136,13 +138,13 @@ jobs:
|
||||||
# ## Update pom.xml ##
|
# ## Update pom.xml ##
|
||||||
# ## Calculate the new version string ##
|
# ## Calculate the new version string ##
|
||||||
- name: Checkout main
|
- name: Checkout main
|
||||||
if: false # DISABLED for testing
|
if: false # DISABLED for testing. DON't atually change master version
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: master
|
ref: master
|
||||||
|
|
||||||
- name: Bump to next SNAPSHOT version
|
- name: Bump to next SNAPSHOT version
|
||||||
if: false # DISABLED for testing
|
if: false # DISABLED for testing. DON't atually change master version
|
||||||
run: |
|
run: |
|
||||||
# Extract the version from the ref, handling tags like v1.0.2 or branches like release/1.0.2
|
# 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'
|
RAW_REF="${GITHUB_REF##*/}" # gets 'v1.0.2' or '1.0.2'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue