Skip to content

Bump ch.qos.logback:logback-classic from 1.4.5 to 1.5.5 #27

Bump ch.qos.logback:logback-classic from 1.4.5 to 1.5.5

Bump ch.qos.logback:logback-classic from 1.4.5 to 1.5.5 #27

Workflow file for this run

name: Build Project
on:
push:
workflow_dispatch:
jobs:
Meta:
runs-on: ubuntu-latest
steps:
- name: Is releasable branch
id: releasable
run: |
if [ "${{ github.event.ref }}" == 'refs/heads/master' ] \
|| [ "${{ github.event.ref }}" == 'refs/heads/main' ] \
|| [[ "${{ github.event.ref }}" =~ ^refs/heads/[0-9]+\.[0-9]+\.x$ ]] \
|| [[ "${{ github.event.ref }}" =~ ^refs/tags/v[0-9]+\.[0-9]+.[0-9]+$ ]]
then
echo "releasable=true" >> $GITHUB_OUTPUT
else
echo "releasable=false" >> $GITHUB_OUTPUT
fi
outputs:
releasable: ${{ steps.releasable.outputs.releasable }}
Build:
strategy:
matrix:
java: [ 11, 19 ]
uses: evanchooly/workflows/.github/workflows/build.yml@master
with:
java: ${{ matrix.java }}
Release:
needs:
- Build
- Meta
if: needs.Meta.outputs.releasable == 'true'
uses: evanchooly/workflows/.github/workflows/jreleaser.yml@master
secrets:
GH_PUSH_TOKEN : ${{ secrets.GH_PUSH_TOKEN }}
GPG_PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
GPG_PUBLIC_KEY : ${{ secrets.GPG_PUBLIC_KEY }}
GPG_PRIVATE_KEY : ${{ secrets.GPG_PRIVATE_KEY }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}