Skip to content

correct tldr format in lmgame rl blog #44

correct tldr format in lmgame rl blog

correct tldr format in lmgame rl blog #44

Workflow file for this run

name: Auto Deploy
on:
push:
branches: [ "main" ]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build the project
run: CI=false npm run build
- name: Deploy with gh-pages
run: |
git config --global user.email "[email protected]"
git config --global user.name "github-actions-bot"
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
npm run deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}