Skip to content

updated action versions and added develop workflow #1

updated action versions and added develop workflow

updated action versions and added develop workflow #1

Workflow file for this run

name: build artifacts
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
id: checkout-source
uses: actions/checkout@v4
- name: 'Package Jar'
run: mvn -B package --file ./groovier-plugin/pom.xml
- name: 'upload artifacts'
id: upload-artifacts
uses: actions/upload-artifact@v4
with:
name: groovier-plugin
path: './groovier-plugin'