Skip to content

Simplify release process by generating artifacts in the CI #208

Simplify release process by generating artifacts in the CI

Simplify release process by generating artifacts in the CI #208

Workflow file for this run

# 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.zip
asset_name: openrefine-commons-$VERSION_STRING.zip
asset_content_type: application/zip