Update sbt to 1.10.0 #1103
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: CI | |
on: | |
push: | |
branches: [ "**" ] | |
tags: [ v* ] | |
pull_request: | |
branches: [ "**" ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: coursier/cache-action@v6 | |
- uses: olafurpg/setup-scala@v14 | |
with: | |
java-version: adopt@1.11 | |
- name: Run tests with sbt | |
run: sbt test | |
- name: Compile docs with mdoc | |
run: sbt compileDocumentation | |
publish: | |
name: Publish release | |
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v')) | |
needs: [build] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: coursier/cache-action@v6 | |
- uses: olafurpg/setup-scala@v14 | |
- run: sbt ci-release | |
env: | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
publish_docker: | |
name: Publish docker image | |
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v')) | |
needs: [build] | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Login to DockerHub | |
uses: docker/login-action@v2.2.0 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: coursier/cache-action@v6 | |
- uses: olafurpg/setup-scala@v14 | |
- run: sbt docker:publish |