Full Release (manual) #11
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: Full Release (manual) | |
on: | |
workflow_dispatch: | |
inputs: | |
java-debug-version: | |
required: true | |
description: 'Next version of java-debug-core (https://repo1.maven.org/maven2/ch/epfl/scala/com-microsoft-java-debug-core/)' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: coursier/[email protected] | |
with: | |
apps: sbt | |
jvm: 'adopt:1.8.0-292' | |
- run: sbt ci-release | |
env: | |
JAVA_DEBUG_VERSION: ${{ inputs.java-debug-version }} | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} |