-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ permissions: | |
jobs: | ||
release: | ||
# runs on main repo only | ||
if: github.repository == 'akka/akka-persistence-jdbc' | ||
if: github.event.repository.fork == false | ||
name: Release | ||
# the release environment provides access to secrets required in the release process | ||
# https://github.com/akka/akka-persistence-jdbc/settings/environments/164872635/edit | ||
|
@@ -48,42 +48,27 @@ jobs: | |
run: sbt +publishSigned | ||
|
||
documentation: | ||
# runs on main repo only | ||
if: github.repository == 'akka/akka-persistence-jdbc' | ||
name: Documentation | ||
# the release environment provides access to secrets required in the release process | ||
# https://github.com/akka/akka-persistence-jdbc/settings/environments/164872635/edit | ||
environment: release | ||
runs-on: ubuntu-22.04 | ||
if: github.event.repository.fork == false | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves | ||
fetch-depth: 0 | ||
|
||
- name: Checkout GitHub merge | ||
if: github.event.pull_request | ||
run: |- | ||
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch | ||
git checkout scratch | ||
- name: Cache Coursier cache | ||
uses: coursier/[email protected] | ||
|
||
- name: Set up JDK 11 | ||
uses: coursier/[email protected] | ||
with: | ||
jvm: temurin:1.11.0 | ||
jvm: temurin:1.11 | ||
|
||
- name: Publish API and reference documentation | ||
env: | ||
GUSTAV_KEY: ${{ secrets.GUSTAV_KEY }} | ||
GUSTAV_PASSPHRASE: ${{ secrets.GUSTAV_PASSPHRASE }} | ||
run: |+ | ||
- name: Publish | ||
run: |- | ||
eval "$(ssh-agent -s)" | ||
echo $GUSTAV_KEY | base64 -di > .github/id_rsa | ||
echo $AKKA_RSYNC_GUSTAV | base64 -d > .github/id_rsa | ||
chmod 600 .github/id_rsa | ||
ssh-keygen -p -P "$GUSTAV_PASSPHRASE" -N "" -f .github/id_rsa | ||
ssh-add .github/id_rsa | ||
sbt "docs/publishRsync" | ||
sbt publishRsync | ||
env: | ||
AKKA_RSYNC_GUSTAV: ${{ secrets.AKKA_RSYNC_GUSTAV }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters