Skip to content

Fix the publishing #171

Fix the publishing

Fix the publishing #171

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: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.PGP_SECRET_KEY_GOYEAU }}"
- name: publish snapshot
run: sbt publishSigned
env:
OSSRH_USERNAME: ${{ secrets.SONATYPE_USERNAME_GOYEAU }}
OSSRH_PASSWORD: ${{ secrets.SONATYPE_PASSWORD_GOYEAU }}