Improved wording towards event-driven (#143) #63
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
tags: ["*"] | |
permissions: | |
contents: read | |
env: | |
CARGO_TERM_COLOR: always | |
PROTOC_VERSION: 3.23.4 | |
jobs: | |
publish: | |
if: github.event.repository.fork == false | |
name: Publish release | |
runs-on: ubuntu-22.04 | |
env: | |
CARGO_REGISTRIES_AKKA_RS_INDEX: https://dl.cloudsmith.io/${{ secrets.CLOUDSMITH_AKKA_RS_ENTITLEMENT_TOKEN }}/lightbend/akka-rs/cargo/index.git | |
CARGO_REGISTRIES_AKKA_RS_TOKEN: ${{ secrets.CLOUDSMITH_LIGHTBEND_MACHINE_API_KEY }} | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v4.1.0 | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
- name: Update Rust | |
run: | | |
rustup update | |
- name: Install protoc | |
# https://github.com/taiki-e/install-action/releases | |
# v2.20.3 | |
uses: taiki-e/install-action@47d27149ff6b3422864ec504071d5cc7873d642e | |
with: | |
tool: protoc@${{ env.PROTOC_VERSION }} | |
- name: Cache Rust | |
# https://github.com/Swatinem/rust-cache/releases | |
# v2.7.0 | |
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 | |
- name: Publish akka-persistence-rs | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
run: cargo publish --registry AKKA_RS -p akka-persistence-rs | |
- name: Publish akka-persistence-rs-commitlog | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
run: cargo publish --registry AKKA_RS -p akka-persistence-rs-commitlog | |
- name: Publish akka-projection-rs | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
run: cargo publish --registry AKKA_RS -p akka-projection-rs | |
- name: Publish akka-projection-rs-commitlog | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
run: cargo publish --registry AKKA_RS -p akka-projection-rs-commitlog | |
- name: Publish akka-projection-rs-grpc | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
run: cargo publish --registry AKKA_RS -p akka-projection-rs-grpc | |
documentation: | |
if: github.event.repository.fork == false | |
name: Documentation | |
# the release environment provides access to secrets required in the release process | |
# https://github.com/akka/akka-edge-rs/settings/environments | |
environment: release | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v4.1.0 | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
- name: Update Rust | |
run: | | |
rustup update | |
- name: Install protoc | |
# https://github.com/taiki-e/install-action/releases | |
# v2.20.3 | |
uses: taiki-e/install-action@47d27149ff6b3422864ec504071d5cc7873d642e | |
with: | |
tool: protoc@${{ env.PROTOC_VERSION }} | |
- name: Cache Rust | |
# https://github.com/Swatinem/rust-cache/releases | |
# v2.7.0 | |
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 | |
- name: Create API documentation | |
run: cargo doc --no-deps | |
- name: Copy index page | |
run: cp docs/index.html target/doc | |
- name: Publish API documentation (tag) | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
env: | |
REFS_TAG: ${{ github.event.ref }} | |
AKKA_RSYNC_GUSTAV: ${{ secrets.AKKA_RSYNC_GUSTAV }} | |
RSYNC_RSH: "ssh -o StrictHostKeyChecking=no" | |
run: |+ | |
eval "$(ssh-agent -s)" | |
echo $AKKA_RSYNC_GUSTAV | base64 -d > .github/id_rsa | |
chmod 600 .github/id_rsa | |
ssh-add .github/id_rsa | |
cd target/doc | |
TAG=$(echo $REFS_TAG | cut -d'/' -f 3) | |
rsync -azP ./ akkarepo@gustav.akka.io:www/api/akka-edge-rs/${TAG}/ | |
- name: Publish API documentation (snapshot) | |
if: ${{ ! startsWith(github.event.ref, 'refs/tags/') }} | |
env: | |
AKKA_RSYNC_GUSTAV: ${{ secrets.AKKA_RSYNC_GUSTAV }} | |
RSYNC_RSH: "ssh -o StrictHostKeyChecking=no" | |
run: |+ | |
eval "$(ssh-agent -s)" | |
echo $AKKA_RSYNC_GUSTAV | base64 -d > .github/id_rsa | |
chmod 600 .github/id_rsa | |
ssh-add .github/id_rsa | |
cd target/doc | |
rsync -azP ./ akkarepo@gustav.akka.io:www/api/akka-edge-rs/snapshot/ |