File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 1+ on :
2+ push :
3+ branches : [master]
4+ tags : ["*"]
5+ jobs :
6+ publish :
7+ runs-on : ubuntu-latest
8+ timeout-minutes : 20
9+ steps :
10+ - uses : actions/checkout@v3
11+ with :
12+ fetch-depth : 0
13+ - uses : actions/setup-java@v3
14+ with :
15+ java-version : 8
16+ distribution : temurin
17+ - run : sbt ci-release
18+ if : ${{ github.repository_owner == 'sbt' }}
19+ env :
20+ PGP_PASSPHRASE : ${{ secrets.PGP_PASSPHRASE }}
21+ PGP_SECRET : ${{ secrets.PGP_SECRET }}
22+ SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
23+ SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ the web with GitHub Pages where it will be served at
2323Create a ` project/ghpages.sbt ` file that looks like the following:
2424
2525``` scala
26- addSbtPlugin(" com.typesafe .sbt" % " sbt-ghpages" % " 0.6.3 " )
26+ addSbtPlugin(" com.github .sbt" % " sbt-ghpages" % " 0.7.0 " )
2727```
2828
2929Then in your ` build.sbt ` file, simply enable the GhpagesPlugin via an
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ name := "sbt-ghpages"
2222
2323organization := " com.github.sbt"
2424
25- version := " 0.6.4-SNAPSHOT "
25+ version := " 0.7.0 "
2626
2727addSbtPlugin(" com.github.sbt" % " sbt-git" % " 2.0.1" )
2828
You can’t perform that action at this time.
0 commit comments