docs: add chapter Fail2ban #49
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: SSH tutorial CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
page-generator: | |
name: Generating pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup Node.js | |
uses: actions/setup-node@main | |
with: | |
node-version: '14' | |
- name: Install dependencies | |
run: npm install | |
- name: Build pages | |
run: npm run build | |
- name: Deploy to website | |
uses: JamesIves/[email protected] | |
with: | |
GIT_CONFIG_NAME: wangdoc-bot | |
GIT_CONFIG_EMAIL: [email protected] | |
REPOSITORY_NAME: wangdoc/website | |
ACCESS_TOKEN: ${{ secrets.WANGDOC_BOT_TOKEN }} | |
BASE_BRANCH: main | |
BRANCH: master # The branch the action should deploy to. | |
FOLDER: dist # The folder the action should deploy. | |
TARGET_FOLDER: dist/ssh | |
CLEAN: true # Automatically remove deleted files from the deploy branch | |
COMMIT_MESSAGE: update from SSH tutorial | |