-
Notifications
You must be signed in to change notification settings - Fork 135
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
7 changed files
with
23 additions
and
38 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 |
---|---|---|
|
@@ -47,40 +47,28 @@ jobs: | |
run: sbt +publishSigned | ||
|
||
documentation: | ||
# runs on main repo only | ||
if: github.event.repository.fork == false | ||
name: Documentation | ||
environment: release | ||
runs-on: ubuntu-22.04 | ||
env: | ||
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8 | ||
if: github.event.repository.fork == false | ||
steps: | ||
- name: Checkout | ||
# https://github.com/actions/checkout/releases | ||
# v3.3.0 | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | ||
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: Setup JDK 11 | ||
# https://github.com/coursier/setup-action/releases | ||
# v1.3.0 | ||
uses: coursier/setup-action@70323223454ac2a9eb2de46f389b4d045cbcdea5 | ||
- name: Set up JDK 11 | ||
uses: coursier/[email protected] | ||
with: | ||
jvm: temurin:1.11 | ||
|
||
- name: Cache Coursier cache | ||
# https://github.com/coursier/cache-action/releases/ | ||
# v6.4.3 | ||
uses: coursier/cache-action@d1039466d0812d6370649b9afb02bbf5f646bacf | ||
|
||
- name: Publish API and reference documentation | ||
env: | ||
GUSTAV_KEY: ${{ secrets.GUSTAV_KEY }} | ||
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-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
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
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 was deleted.
Oops, something went wrong.