Update PAM reference in static_user_database.rst #689
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: 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 }} |