Skip to content

Commit

Permalink
Add initial workflow for transaction counter release
Browse files Browse the repository at this point in the history
  • Loading branch information
IsuruMaduranga committed Nov 28, 2023
1 parent 3c1529b commit ddb5c7c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/counter-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release Transaction Counter Plugin
on:
workflow_dispatch:
inputs:
release_version:
required: true
type: string
description: "Release Version"
next_version:
type: string
description: "Next Development Version"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Checkout code
uses: actions/checkout@v2
- name: Build with Maven
run: mvn clean install -DskipTests=true



0 comments on commit ddb5c7c

Please sign in to comment.