Skip to content

Commit

Permalink
feat: create action to build the bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanCapistrano committed Jan 8, 2024
1 parent 88bdddb commit a41a189
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-bundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build Bundle

on:
push:
tags:
- "v*"

permissions: write-all

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'

- name: Building the bundle
run: mvn clean install

- name: Automatic Releases
uses: marvinpinto/[email protected]
with:
repo_token: "${{ secrets.BUILD_BUNDLE_TOKEN }}"
prerelease: false
files: |
target/*.jar

0 comments on commit a41a189

Please sign in to comment.