Skip to content

Commit

Permalink
Merge pull request #198 from keeps/mguimaraes-dev
Browse files Browse the repository at this point in the history
Bump several dependencies
  • Loading branch information
luis100 authored Aug 7, 2023
2 parents dad9413 + f4f6ed5 commit 46b20df
Show file tree
Hide file tree
Showing 2 changed files with 367 additions and 414 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ jobs:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Get release version
id: tag
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/}
- name: Set POM Version
run: mvn versions:set versions:commit -DnewVersion=${{ steps.tag.outputs.VERSION }}
run: mvn versions:set versions:commit -DnewVersion=${{ github.ref }}
- name: Build Jar
run: mvn --batch-mode clean package -P cli
env:
Expand All @@ -39,9 +36,9 @@ jobs:
- name: Release to GitHub
uses: softprops/action-gh-release@v1
with:
name: Version ${{ steps.tag.outputs.VERSION }}
tag_name: ${{ steps.tag.outputs.VERSION }}
name: Version ${{ github.ref }}
tag_name: ${{ github.ref }}
draft: true
files: target/commons-ip2-cli-${{ steps.tag.outputs.VERSION }}.jar
files: target/commons-ip2-cli-${{ github.ref }}.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 46b20df

Please sign in to comment.