feat(common): cap active transactions and refresh the idle timer on e… #37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }}" |