Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Dec 6, 2022
1 parent 88f4d44 commit a6dfa0d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
branches: [master]
tags: ["*"]
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
java-version: 8
distribution: temurin
- run: sbt ci-release
if: ${{ github.repository_owner == 'sbt' }}
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ the web with GitHub Pages where it will be served at
Create a `project/ghpages.sbt` file that looks like the following:

```scala
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.7.0")
```

Then in your `build.sbt` file, simply enable the GhpagesPlugin via an
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ name := "sbt-ghpages"

organization := "com.github.sbt"

version := "0.6.4-SNAPSHOT"
version := "0.7.0"

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

Expand Down

0 comments on commit a6dfa0d

Please sign in to comment.