Skip to content

Fix the publishing #162

Fix the publishing

Fix the publishing #162

Workflow file for this run

name: pr_scala_3
on:
pull_request:
paths-ignore:
- 'doc/**'
- 'docs/**'
- '*.md'
branches:
- master
jobs:
scala_3_0:
runs-on: ubuntu-latest
steps:
- name: checkout the repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: setup sbt
uses: coursier/setup-action@v1
with:
apps: sbt
jvm: temurin:11
- name: run tests
run: sbt test
- name: publish snapshot
run: sbt publish
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}