Skip to content

fix markdown issue #116

fix markdown issue

fix markdown issue #116

Workflow file for this run

name: Release
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
- README.md
- 'mkdocs.yml'
- Pipfile
- 'netlify.toml'
- '.github/workflows/scala-steward.yml'
tags: ["*"]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
key: ${{ runner.os }}-scala
path: |
~/.ivy2/cache
~/.sbt
- uses: olafurpg/setup-scala@v10
with:
java-version: [email protected]
- name: Publish ${{ github.ref }}
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 }}