Skip to content

Document projectile power attribute #343

Document projectile power attribute

Document projectile power attribute #343

Workflow file for this run

name: docs
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
check:
if: github.event_name != 'push'
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup
uses: actions/setup-node@v4
with:
node-version: '20.x'
run: |
npm ci
npm run build
deploy:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: ssh
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
mkdir -p ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
echo "${{ secrets.GH_PAGES_DEPLOY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
cat <<EOT >> ~/.ssh/config
Host github.com
HostName github.com
IdentityFile ~/.ssh/id_rsa
EOT
- name: release
env:
USE_SSH: true
GIT_USER: git
run: |
git config --global user.email "[email protected]"
git config --global user.name "gh-actions"
npm ci
npx docusaurus deploy