Skip to content

fix(ci): fix git config #16

fix(ci): fix git config

fix(ci): fix git config #16

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python 🐍
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Pre-Commit ⚠️
run: python -m pip install pre-commit && pre-commit install
- name: Load cached Pre-Commit Dependencies πŸ“¦
id: cached-pre-commit-dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit/
key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Execute Pre-Commit πŸ”Ž
run: pre-commit run --show-diff-on-failure --color=always --all-files
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v2
- name: Setup Node.js πŸ”¨
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies πŸ“¦
run: npm install
- name: Configure Git πŸ› οΈ
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
- name: Build and Deploy πŸš€
run: npm run deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}