Skip to content

chore(deps): update gradle to v9.5.1 (#549) #451

chore(deps): update gradle to v9.5.1 (#549)

chore(deps): update gradle to v9.5.1 (#549) #451

Workflow file for this run

name: Publishing
on:
push:
branches:
- main
tags:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USER }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PWD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.KEY_ID }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.KEY_PWD }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Publish
run: |
export IS_RELEASE=${{ github.event_name == 'push' && contains(github.ref, 'refs/tags/') }}
make publish