chore: improve dependency analysis (#1074) #87
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: Publish | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
tags: ["v*"] | |
permissions: | |
contents: read | |
jobs: | |
release: | |
# runs on main repo only | |
if: github.event.repository.fork == false | |
name: Release | |
environment: release | |
runs-on: ubuntu-22.04 | |
env: | |
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8 | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v3.3.0 | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | |
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: Set up JDK 11 | |
uses: coursier/[email protected] | |
with: | |
jvm: temurin:1.11.0.17 | |
- name: Cache Coursier cache | |
# https://github.com/coursier/cache-action/releases/ | |
# v6.4.3 | |
uses: coursier/cache-action@d1039466d0812d6370649b9afb02bbf5f646bacf | |
- name: Publish artifacts for all Scala versions | |
env: | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
PUBLISH_USER: ${{ secrets.PUBLISH_USER }} | |
PUBLISH_PASSWORD: ${{ secrets.PUBLISH_PASSWORD }} | |
run: sbt +publishSigned | |
documentation: | |
name: Documentation | |
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: Set up JDK 11 | |
uses: coursier/[email protected] | |
with: | |
jvm: temurin:1.11 | |
- name: Publish | |
run: |- | |
eval "$(ssh-agent -s)" | |
echo $AKKA_RSYNC_GUSTAV | base64 -d > .github/id_rsa | |
chmod 600 .github/id_rsa | |
ssh-add .github/id_rsa | |
sbt docs/publishRsync | |
env: | |
AKKA_RSYNC_GUSTAV: ${{ secrets.AKKA_RSYNC_GUSTAV }} | |