FTP: Add for FTPS the ability to set KeyManager and TrustManager (#2993) #118
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.repository == 'akka/alpakka' | |
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 | |
uses: actions/checkout@v3.1.0 | |
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: Cache Coursier cache | |
uses: coursier/cache-action@v6.4.0 | |
# Release must be with JDK 8 because --release 8 flag prevents access to com.sun.nio.file.SensitivityWatchEventModifier | |
- name: Set up JDK 8 | |
uses: coursier/setup-action@v1.3.0 | |
with: | |
jvm: adopt:1.8.0-275 | |
- name: Publish artifacts for all Scala versions | |
env: | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
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/alpakka' | |
name: Documentation | |
environment: release | |
runs-on: ubuntu-22.04 | |
env: | |
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.1.0 | |
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: Cache Coursier cache | |
uses: coursier/cache-action@v6.4.0 | |
- name: Set up JDK 11 | |
uses: coursier/setup-action@v1.3.0 | |
with: | |
jvm: temurin:1.11 | |
- name: Publish API and reference documentation | |
env: | |
GUSTAV_KEY: ${{ secrets.GUSTAV_KEY }} | |
run: |+ | |
eval "$(ssh-agent -s)" | |
echo $GUSTAV_KEY | base64 -di > .github/id_rsa | |
chmod 600 .github/id_rsa | |
ssh-add .github/id_rsa | |
sbt +~2.13 docs/publishRsync |