docs: add repository info (#1177) #187
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
name: Release | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
tags: ["*"] | |
permissions: | |
contents: read | |
jobs: | |
release: | |
# runs on main repo only | |
if: github.repository == 'akka/akka-management' | |
name: Release | |
# the release environment provides access to secrets required in the release process | |
# https://github.com/akka/akka-management/settings/environments | |
environment: release | |
runs-on: ubuntu-22.04 | |
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.17 | |
- name: Publish artifacts for all Scala versions | |
env: | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
run: sbt ci-release | |
documentation: | |
# runs on main repo only | |
if: github.repository == 'akka/akka-management' | |
name: Documentation | |
# the release environment provides access to secrets required in the release process | |
# https://github.com/akka/akka-management/settings/environments | |
environment: release | |
runs-on: ubuntu-22.04 | |
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 17 | |
uses: coursier/[email protected] | |
with: | |
jvm: temurin:1.17.0 | |
- name: Publish API and reference documentation | |
env: | |
GUSTAV_KEY: ${{ secrets.GUSTAV_KEY }} | |
GUSTAV_PASSPHRASE: ${{ secrets.GUSTAV_PASSPHRASE }} | |
run: |+ | |
eval "$(ssh-agent -s)" | |
echo $GUSTAV_KEY | base64 -di > .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" |