Skip to content

v1.3.1

v1.3.1 #36

Workflow file for this run

name: Build
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Download code from repository
- name: Checkout code
uses: actions/checkout@v4
# Setup Java
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
# Build plugin
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
# Upload release
- name: Upload release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${GITHUB_REF##*/} ./target/YamipaPlugin-*.jar