Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 #12
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: Java CI/CD | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the develop branch | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
IS_DEVELOP_PUSH: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }} | |
IS_MASTER_PUSH: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
jdk: [11] | |
include: | |
# lengthy build steps should only be performed on linux with Java 11 (CodeCov analysis, deployment) | |
- os: ubuntu-latest | |
jdk: 11 | |
isMainBuildEnv: true | |
namePrefix: 'Main ' | |
fail-fast: false | |
name: ${{ matrix.namePrefix }} Maven build (${{ matrix.os }}, JDK ${{ matrix.jdk }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Git Clone | |
uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.jdk }} | |
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml | |
server-username: MAVEN_USERNAME # env variable for username in deploy | |
server-password: MAVEN_PASSWORD # env variable for token in deploy | |
# sets environment variables to be used in subsequent steps: https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable | |
- name: Set environment variables | |
shell: bash | |
run: | | |
if [ "${{ matrix.isMainBuildEnv }}" = "true" ]; then | |
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV | |
if [ "${{github.ref}}" = "refs/heads/develop" ]; then | |
echo "MAVEN_USERNAME=${{ secrets.OSSRH_TOKEN_USER }}" >> $GITHUB_ENV | |
echo "MAVEN_PASSWORD=${{ secrets.OSSRH_TOKEN_PASSWORD }}" >> $GITHUB_ENV | |
echo "MVN_GOAL=clean deploy" >> $GITHUB_ENV | |
echo "STEP_NAME_SUFFIX=(Deploys to OSSRH)" >> $GITHUB_ENV | |
else | |
echo "MVN_GOAL=clean verify" >> $GITHUB_ENV | |
fi | |
else | |
echo "MVN_GOAL=clean verify" >> $GITHUB_ENV | |
fi | |
- name: ${{ matrix.namePrefix }} Build with Maven ${{ env.STEP_NAME_SUFFIX }} | |
run: mvn -e -B ${{ env.MVN_GOAL }} -DskipTests=True -Pcontainer-tag-latest | |
- name: ${{ matrix.namePrefix }} Publish Docker Container on push to CI ${{ env.STEP_NAME_SUFFIX }} | |
shell: bash | |
if: ${{ env.IS_DEVELOP_PUSH }} | |
run: | | |
cd pickaxe-scans | |
mvn -Ddocker.username=${{ github.actor }} -Ddocker.password=${{ secrets.GITHUB_TOKEN }} -Ddocker.registry=${{ env.REGISTRY }} docker:push -Pcontainer-tag-latest |