Skip to content

Added GNU Affero LICeNSE - ci ignore #32

Added GNU Affero LICeNSE - ci ignore

Added GNU Affero LICeNSE - ci ignore #32

Workflow file for this run

name: Release stable
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci ignore')"
steps:
- uses: actions/checkout@v3
- name: Setup PHP 8.0
uses: shivammathur/[email protected]
with:
php-version: 8.0
extensions: yaml
- name: "Get plugin.yml stuff"
id: metadata
run: |
echo "VERSION=$(php -r 'echo explode("+", explode("-", yaml_parse_file(getcwd() . "/WD-Forms-Plugin/src/main/resources/plugin.yml")["version"])[0])[0];')" >> $GITHUB_OUTPUT
echo "FULL_VERSION=$(php -r 'echo yaml_parse_file(getcwd() . "/WD-Forms-Plugin/src/main/resources/plugin.yml")["version"];')" >> $GITHUB_OUTPUT
echo "NAME=$(php -r 'echo yaml_parse_file(getcwd() . "/WD-Forms-Plugin/src/main/resources/plugin.yml")["name"];')" >> $GITHUB_OUTPUT
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: "Create Release"
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
draft: false
automatic_release_tag: "v${{ steps.metadata.outputs.VERSION }}"
prerelease: false
title: "Release v${{ steps.metadata.outputs.VERSION }}"
files: "**.jar"