Skip to content

fix: CLI installation command for Linux #1

fix: CLI installation command for Linux

fix: CLI installation command for Linux #1

Workflow file for this run

name: Static content to doc.akka.io
on:
workflow_dispatch:
push:
branches:
- 'main'
paths:
- 'docs/src-static/**'
permissions:
contents: read
jobs:
build:
name: scp to Gustav
runs-on: ubuntu-22.04
if: github.event.repository.fork == false
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: main
- name: rsync
run: |
./docs/bin/rsync-docs.sh "docs/src-static/*" [email protected]:www/
./docs/bin/rsync-docs.sh "docs/src-static/" [email protected]:www/
env:
SCP_SECRET: ${{ secrets.GUSTAV_SCP_SECRET }}