Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build
on:
push:
branches:
- master
workflow_dispatch:

jobs:
ci:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 11
cache: sbt
- uses: sbt/setup-sbt@v1
- name: sbt ci ${{ github.ref }}
run: sbt ci
env:
SBT_OPTS: "-Xmx2g"
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@ jobs:
distribution: temurin
java-version: 11
cache: sbt
- uses: sbt/setup-sbt@v1
- name: sbt ci ${{ github.ref }}
run: ./sbt ci
run: sbt ci
env:
SBT_OPTS: "-Xmx2g"
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
name: Release
on:
push:
branches: [ master ]
release:
types: [ published ]
jobs:
Expand All @@ -18,10 +16,12 @@ jobs:
distribution: temurin
java-version: 11
cache: sbt
- uses: sbt/setup-sbt@v1
- name: sbt ci-release ${{ github.ref }}
run: ./sbt ci-release
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 }}
SBT_OPTS: "-Xmx2g"