Skip to content

docs: 러스트 프로그래밍 책 링크 추가 #828

docs: 러스트 프로그래밍 책 링크 추가

docs: 러스트 프로그래밍 책 링크 추가 #828

Workflow file for this run

name: Deploy Documentation
on:
pull_request:
branches: [main]
push:
branches: [main]
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