Skip to content

Commit a6dfa0d

Browse files
committed
v0.7.0
1 parent 88f4d44 commit a6dfa0d

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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 }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ the web with GitHub Pages where it will be served at
2323
Create 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

2929
Then in your `build.sbt` file, simply enable the GhpagesPlugin via an

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ name := "sbt-ghpages"
2222

2323
organization := "com.github.sbt"
2424

25-
version := "0.6.4-SNAPSHOT"
25+
version := "0.7.0"
2626

2727
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.1")
2828

0 commit comments

Comments
 (0)