Skip to content

Fix formatting in netlify.toml by adding a newline at the end of the … #1

Fix formatting in netlify.toml by adding a newline at the end of the …

Fix formatting in netlify.toml by adding a newline at the end of the … #1

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pandoc
run: |
sudo apt-get update
sudo apt-get install -y pandoc
- name: Run conversion script
run: |
chmod +x convert.sh
./convert.sh
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: './docs'
production-branch: main
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}