Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Checking models on huggingface #364

Checking models on huggingface

Checking models on huggingface #364

Workflow file for this run

name: Checking models on huggingface
on:
push:
branches:
- main
schedule:
- cron: 0 20 * * *
workflow_dispatch:
jobs:
automatic-updates:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '>=1.21.0'
- name: Check updates 🔧
run: |
go get github.com/go-skynet/LocalAI@master
go mod tidy
go run ./main.go
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v5