chore: update ci version #818
Workflow file for this run
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: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
checks: | |
if: github.event_name != 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.17.0' | |
- name: Create env file | |
run: | | |
touch .env | |
echo ALGOLIA_APP_ID = ${{ secrets.ALGOLIA_APP_ID }} >> .env | |
echo ALGOLIA_API_KEY = ${{ secrets.ALGOLIA_API_KEY }} >> .env | |
cat .env | |
- name: Test Build | |
run: | | |
if [ -e yarn.lock ]; then | |
yarn install --immutable | |
elif [ -e package-lock.json ]; then | |
npm ci | |
else | |
npm i | |
fi | |
npm run build | |
gh-release: | |
if: github.event_name != 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.17.0' | |
- uses: webfactory/ssh-agent@v0.5.0 | |
with: | |
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }} | |
- name: Create env file | |
run: | | |
touch .env | |
echo ALGOLIA_APP_ID = ${{ secrets.ALGOLIA_APP_ID }} >> .env | |
echo ALGOLIA_API_KEY = ${{ secrets.ALGOLIA_API_KEY }} >> .env | |
cat .env | |
- name: Release to GitHub Pages | |
env: | |
USE_SSH: true | |
GIT_USER: git | |
run: | | |
git config --global user.email "actions@github.com" | |
git config --global user.name "gh-actions" | |
if [ -e yarn.lock ]; then | |
yarn install --immutable | |
elif [ -e package-lock.json ]; then | |
npm ci | |
else | |
npm i | |
fi | |
npm run deploy |