Skip to content

Update PAM reference in static_user_database.rst #689

Update PAM reference in static_user_database.rst

Update PAM reference in static_user_database.rst #689

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
- release-2.3
jobs:
release:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- uses: ammaraskar/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
DOCS-FOLDER: "."
build-command: make dirhtml
- uses: dovecot/rsync-deployments@master
with:
RSYNC_OPTIONS: -azr --delete
RSYNC_TARGET: [email protected]:public_html/3.0/.
RSYNC_BASEDIR: /_build/.
if: env.DEPLOY_KEY
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
release23:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/release-2.3'
steps:
- uses: actions/checkout@v2
- uses: ammaraskar/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
DOCS-FOLDER: "."
build-command: make dirhtml
- uses: dovecot/rsync-deployments@master
with:
RSYNC_OPTIONS: -azr --delete
RSYNC_TARGET: [email protected]:public_html/2.3/.
RSYNC_BASEDIR: /_build/.
if: env.DEPLOY_KEY
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}