Fixed maven issue #7
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 with Maven | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
packages: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Install Spigot Build tools (1.17.1) | |
uses: SpraxDev/Action-SpigotMC@v4 | |
with: | |
versions: 1.17.1 | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Generate release tag | |
id: tag | |
run: | | |
echo "::set-output name=release_tag::$(date +'%Y.%m.%d')-$(git rev-parse --short HEAD)" | |
- name: Add Jar to GitHub releases | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "${{ steps.tag.outputs.release_tag }}" | |
prerelease: false | |
title: "Release ${{ steps.tag.outputs.release_tag }}" | |
files: | | |
target/*.jar |