-
Notifications
You must be signed in to change notification settings - Fork 53
33 lines (28 loc) · 807 Bytes
/
publish.yml
File metadata and controls
33 lines (28 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Publish to Maven Central
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
name: Publish to Maven Central
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # sbt-dynver needs full git history
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Set up sbt
uses: sbt/setup-sbt@v1
- name: Publish all Scala versions
run: sbt +ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}