Skip to content

Commit 4e86144

Browse files
committed
prepare v0.8.0
1 parent df7b421 commit 4e86144

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
3131
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
3232
steps:
33+
- name: Env
34+
run: |
35+
echo "JFROG_USER=${{ secrets.JFROG_USER }}" >> $GITHUB_ENV
36+
echo "JFROG_PASSWORD=${{ secrets.JFROG_PASSWORD }}" >> $GITHUB_ENV
37+
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
3338
- name: Checkout
3439
uses: actions/checkout@v3
3540
- name: Set up JDK 8

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
2828
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
2929
steps:
30+
- name: Env
31+
run: |
32+
echo "JFROG_USER=${{ secrets.JFROG_USER }}" >> $GITHUB_ENV
33+
echo "JFROG_PASSWORD=${{ secrets.JFROG_PASSWORD }}" >> $GITHUB_ENV
34+
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
3035
- name: Checkout
3136
uses: actions/checkout@v3
3237
- name: Set up JDK 8
@@ -47,7 +52,7 @@ jobs:
4752
fail_ci_if_error: false
4853
verbose: true
4954
- name: Publish
50-
run: sbt + publish
55+
run: SBT_OPTS="-Xss4M -Xms1g -Xmx4g" sbt '+ publish'
5156

5257
lint:
5358
runs-on: ubuntu-latest

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ThisBuild / organization := "app.softnetwork"
1717

1818
name := "generic-persistence-api"
1919

20-
ThisBuild / version := "0.8-SNAPSHOT"
20+
ThisBuild / version := "0.8.0"
2121

2222
lazy val moduleSettings = Seq(
2323
crossScalaVersions := Seq(scala212, scala213),

0 commit comments

Comments
 (0)