Bump com.fasterxml.jackson.core:jackson-core from 2.18.0 to 2.18.1 #246
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
release: | |
types: [created] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B package | |
- name: Get release upload URL | |
id: get_release_upload_url | |
if: github.event_name == 'release' | |
uses: bruceadams/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Extract version string | |
id: version_string_variable | |
run: echo "VERSION_STRING=$(mvn org.apache.maven.plugins:maven-help-plugin:3.1.0:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV | |
- name: Upload release asset | |
id: upload-release-asset | |
if: github.event_name == 'release' | |
uses: shogo82148/[email protected] | |
with: | |
upload_url: ${{ steps.get_release_upload_url.outputs.upload_url }} | |
asset_path: ./target/openrefine-commons-extension-${{ env.VERSION_STRING }}.zip | |
asset_name: openrefine-commons-extension-${{ env.VERSION_STRING }}.zip | |
asset_content_type: application/zip | |