Skip to content

fix: remove reference to ollama-node #28

fix: remove reference to ollama-node

fix: remove reference to ollama-node #28

Workflow file for this run

name: Deno Compile
on:
push:
branches:
- main
jobs:
changelog:
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.changelog.outputs.tag }}
skipped: ${{ steps.changelog.outputs.skipped }}
output: ${{steps.changelog.outputs.clean_changelog}}
steps:
- uses: actions/checkout@v4
- name: Conventional Changelog
id: changelog
uses: TriPSs/conventional-changelog-action@v4.1.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
compile:
strategy:
matrix:
target: [{target: x86_64-unknown-linux-gnu, file: linux-ollamamodelupdate}, {target: x86_64-pc-windows-msvc, file: win-ollamamodelupdate.exe}, {target: x86_64-apple-darwin, file: macos-x86-ollamamodelupdate}, {target: aarch64-apple-darwin, file: macos-arm64-ollamamodelupdate}]
runs-on: ubuntu-latest
needs: changelog
if: ${{ needs.changelog.outputs.skipped == 'false' }}
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: 1.37.2
- run:
deno compile --allow-net --target ${{ matrix.target.target }} --output ${{ matrix.target.file}} update.ts
- name: Release
uses: softprops/action-gh-release@v1
if: ${{ needs.changelog.outputs.skipped == 'false' }}
with:
tag_name: ${{ needs.changelog.outputs.tag }}
name: ${{ needs.changelog.outputs.tag }}
body: ${{ needs.changelog.outputs.output }}
files: |
linux-ollamamodelupdate
win-ollamamodelupdate.exe
macos-x86-ollamamodelupdate
macos-arm64-ollamamodelupdate
token: ${{ secrets.GITHUB_TOKEN }}