Skip to content

feat(common): cap active transactions and refresh the idle timer on e… #37

feat(common): cap active transactions and refresh the idle timer on e…

feat(common): cap active transactions and refresh the idle timer on e… #37

name: Release Feature SNAPSHOT
on:
push:
branches:
- 'feature/**'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up JDK 8
uses: actions/setup-java@v5
with:
java-version: '8'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6
- name: Extract feature version
id: version
uses: ./.github/actions/extract-feature-version
with:
branch-name: ${{ github.ref }}
- name: Publish to GitHub Packages
run: |
./gradlew publishAllPublicationsToGitHubPackagesRepository \
-PprojectVersion=${{ steps.version.outputs.version }} \
-PgprUsername="${{ github.repository_owner }}" \
-PgprPassword="${{ secrets.CR_PAT }}"