Skip to content

Create lock.yml

Create lock.yml #24

Workflow file for this run

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: Base CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Just Build
runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# os:
# - ubuntu-latest
# - windows-latest
# - ubuntu-20.04
# jdk:
# - '11'
# - '17'
#
# jdk-distribution:
# - 'adopt'
# - 'temurin'
steps:
- uses: actions/checkout@v4
# - name: Set up JDK ${{ matrix.jdk }}
# uses: actions/setup-java@v4
# with:
# java-version: ${{ matrix.jdk }}
# distribution: ${{ matrix.jdk-distribution }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
- name: Just verify
run: mvn -B clean verify
- name: Package with Maven
run: mvn -B clean package -DskipTests
- name: View tree
run: |
ls ./target -a
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ubuntu-latest
path: ./target
release:
name: release
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: 'ubuntu-latest/*.jar'
tag: ${{ github.ref }}
file_glob: true
# deploy:
# name: deploy
# if: startsWith(github.ref, 'refs/tags/')
# needs: release
# runs-on: ubuntu-latest