Skip to content

Website: Add ExllamaV2 to index #8

Website: Add ExllamaV2 to index

Website: Add ExllamaV2 to index #8

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy pip index to Netlify
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "netlify"
cancel-in-progress: false
jobs:
# Single deploy job since we're just deploying
netlify-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
path: dist
- name: Publish
uses: netlify/actions/cli@master
with:
args: deploy --dir=dist
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}