Skip to content

Commit

Permalink
Ajustes Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel-Oliveira committed Mar 26, 2024
1 parent 913bd72 commit e7144c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- name: Set Release version env variable
run: |
echo "RELEASE_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV
IFS='.' read -ra VER <<< "${{ env.RELEASE_VERSION }}"
echo "X_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV
IFS='.' read -ra VER <<< "${{ env.X_VERSION }}"
MAJOR=${VER[0]}
MINOR=${VER[1]}
let "PREV_MINOR=MINOR-1"
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Criando executavel
run: |
mvn versions:set -DnewVersion=${{ env.RELEASE_VERSION }}
mvn mvn clean compile assembly:single --file pom.xml
mvn clean compile assembly:single --file pom.xml
- name: Criando pasta para External Jar
run: |
Expand Down

0 comments on commit e7144c9

Please sign in to comment.