Skip to content

Commit

Permalink
updated action versions and added develop workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eric2788 committed Aug 14, 2024
1 parent 3cb8a50 commit 208aae2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- name: Checkout Source Code
id: checkout-source
uses: actions/checkout@v2
uses: actions/checkout@v4
- uses: eric2788/maven-jar-publish@v3
with:
java-version: 18
Expand All @@ -36,7 +36,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions-ecosystem/action-get-latest-tag@v1
id: latest-tag
- uses: jungwinter/split@v2
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 18
- name: 'Package Jar'
run: mvn -B package --file ./pom.xml
- name: 'upload artifacts'
id: upload-artifacts
uses: actions/upload-artifact@v4
with:
name: groovier-plugin
path: './groovier-plugin/target'

0 comments on commit 208aae2

Please sign in to comment.