Bump ch.qos.logback:logback-classic from 1.2.9 to 1.2.13 #56
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
name: Build | |
on: | |
[push] | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
#This check is case insensitive | |
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" | |
outputs: | |
artifactVersion: ${{ steps.setversion.outputs.version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Ensure to use tagged version | |
run: mvn versions:set --file ./pom.xml -DnewVersion=${GITHUB_REF##*/} # use shell parameter expansion to strip of 'refs/tags' | |
if: startsWith(github.ref, 'refs/tags/') | |
- name: Output project version | |
id: setversion | |
run: | | |
BUILD_VERSION=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout) | |
echo "::set-output name=version::${BUILD_VERSION}" | |
- name: Build and Test | |
run: mvn -B install | |
- name: Upload artifact cryptomator-cli-${{ steps.setversion.outputs.version }}.jar | |
uses: actions/upload-artifact@v2 | |
with: | |
name: cryptomator-cli-${{ steps.setversion.outputs.version }}.jar | |
path: target/cryptomator-cli-*.jar | |
release: | |
name: Draft a Release on GitHub Releases and uploads the build artifacts to it | |
runs-on: ubuntu-latest | |
needs: build | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Download cryptomator-cli.jar | |
uses: actions/download-artifact@v1 | |
with: | |
name: cryptomator-cli-${{ needs.build.outputs.artifactVersion }}.jar | |
path: . | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
body: | | |
:construction: Work in Progress | |
draft: true | |
prerelease: false | |
- name: Upload cryptomator-cli-${{ needs.build.outputs.artifactVersion }}.jar to GitHub Releases | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: cryptomator-cli-${{ needs.build.outputs.artifactVersion }}.jar | |
asset_name: cryptomator-cli-${{ needs.build.outputs.artifactVersion }}.jar | |
asset_content_type: application/jar |