fix(SSLGenerate): dump private key if issuer was not let's encrypt (#… #823
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 Documentation | |
on: | |
push: | |
branches: | |
- develop | |
- v1 | |
- v2 | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
env: | |
NODE_ENV: development | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Latest Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Dependencies (Including Dev dependencies) | |
run: npm install | |
- name: Set up Git | |
run: | | |
git config --global user.name "github-actions-bot" | |
git config --global user.email "[email protected]" | |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git | |
- name: Build Documentation | |
run: npm run build:docs |