Skip to content

Release

Release #1

Workflow file for this run

name: Build & Publish
on: workflow_dispatch
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK And SBT
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "21"
cache: "sbt"
- name: Test
run: sbt test
- name: Publish to Maven Repository
run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
PGP_SECRET: ${{ secrets.GPG_SECRET }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
- name: Publish to GitHub Packages
run: sbt publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }

Check failure on line 32 in .github/workflows/sbt-build.yml

View workflow run for this annotation

GitHub Actions / Build & Publish

Invalid workflow file

The workflow is not valid. .github/workflows/sbt-build.yml (Line: 32, Col: 25): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.