Skip to content

Report location of code causing KSP exceptions when generating assist… #70

Report location of code causing KSP exceptions when generating assist…

Report location of code causing KSP exceptions when generating assist… #70

name: Publish snapshot
on:
workflow_dispatch:
push:
branches:
- main
jobs:
publish-snapshot:
runs-on: ubuntu-latest
if: github.repository == 'zacsweers/anvil'
timeout-minutes: 25
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Set version for non-main branch
if: ${{ github.ref_name != 'main' && !startsWith(github.ref, 'refs/tags/') }}
run: |
echo "ORG_GRADLE_PROJECT_VERION_NAME=${{ github.ref_name }}-SNAPSHOT" | sed 's/\//-/g' >> $GITHUB_ENV
- uses: gradle/actions/wrapper-validation@db19848a5fa7950289d3668fb053140cf3028d43 # v3
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4
with:
distribution: 'zulu'
java-version: '17'
check-latest: true
- name: Publish Release 1.9
run: ./gradlew clean publish --no-build-cache --no-daemon --stacktrace
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SonatypeUsername }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SonatypePassword }}