Skip to content

Update github actions #12

Update github actions

Update github actions #12

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://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: maven-settings
uses: s4u/maven-settings-action@v3
with:
servers: '[{"id": "kconfig", "username": "github", "password": "${GITHUB_TOKEN_REF}"}]'
githubServer: false
- name: Build with Maven
run: mvn -B package --file pom.xml
env:
GITHUB_TOKEN_REF: ${{ secrets.GH_PAT_FOR_ACTIONS_TOKEN }}
- name: Upload plugin artifact
uses: actions/upload-artifact@v4
with:
name: EndlessDispense
path: target/EndlessDispense.jar