Skip to content

Commit

Permalink
build: attempt to initiate release
Browse files Browse the repository at this point in the history
  • Loading branch information
novoj committed Dec 26, 2023
1 parent 704c55b commit e67bcd7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:

- name: Build with Maven # run Maven without tests (tests must pass in dev branch)
run: |
mvn versions:set -DnewVersion=${{ steps.release_version.outputs.version }}
export CURRENT_VERSION="${{ steps.release_version.outputs.version }}"
export NEW_VERSION="$( echo ${CURRENT_VERSION} | sed 's/^v//')"
mvn versions:set -DnewVersion=$NEW_VERSION
mvn -T 1C -B deploy -Dmaven.test.skip=true --file pom.xml
env:
EVITA_BUILD_VERSION: ${{ steps.release_version.outputs.version }}
Expand Down

0 comments on commit e67bcd7

Please sign in to comment.