Add log-size property to soap methods #1
Workflow file for this run
This file contains 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: Publish Releases | |
on: | |
push: | |
tags: ["**"] | |
jobs: | |
# Run Gradle Wrapper Validation to verify the wrapper's checksum | |
gradle-validation: | |
name: Gradle Wrapper | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'taymyr' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# we don't know what commit the last tag was | |
fetch-depth: 0 | |
- name: Gradle Wrapper Validation | |
uses: gradle/actions/wrapper-validation@v3 | |
publish-artifacts: | |
name: Publish Artifacts for Scala ${{ matrix.scala }} | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'taymyr' | |
needs: gradle-validation | |
strategy: | |
matrix: | |
include: | |
- scala: "2.11" | |
lagom: "1.4.15" | |
- scala: "2.12" | |
lagom: "1.5.5" | |
- scala: "2.13" | |
lagom: "1.6.4" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# we don't know what commit the last tag was | |
fetch-depth: 0 | |
- run: git fetch --tags --force origin # WA: https://github.com/actions/checkout/issues/882 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'liberica' | |
java-version: '8' | |
check-latest: true | |
cache: 'gradle' | |
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
- name: Publish Releases | |
run: >- | |
./gradlew --no-daemon version publishToSonatype closeAndReleaseSonatypeStagingRepository -x test | |
-PscalaBinaryVersion=${{ matrix.scala }} -PlagomVersion=${{ matrix.lagom }} | |
-Psigning.gnupg.keyName=$GPG_KEY_ID | |
-Psigning.gnupg.passphrase="$GPG_PASSPHRASE" | |
-PsonatypeUsername="$OSSRH_USERNAME" | |
-PsonatypePassword="$OSSRH_TOKEN" | |
env: | |
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }} |