Skip to content

feat: use testcontainers-warp10 2.1.0 #27

feat: use testcontainers-warp10 2.1.0

feat: use testcontainers-warp10 2.1.0 #27

Workflow file for this run

name: release
on:
push:
tags: [v*]
jobs:
release-scala:
runs-on: ubuntu-latest
steps:
- name: checkout the repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Setup sbt launcher
uses: sbt/setup-sbt@v1
- name: run tests scala 2.13
run: sbt ++2.13 test
- name: run tests scala 3.7
run: sbt ++3.7 test
- name: publish
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.CENTRAL_TOKEN }}
SONATYPE_USERNAME: ${{ secrets.CENTRAL_USERNAME }}
CI_SONATYPE_RELEASE: sonatypeBundleRelease
run: sbt ci-release