Test CI #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: push | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- name: Install dependencies | |
run: npm install -g @frost-beta/huggingface@0.0.5 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test | |
run: | | |
huggingface download --to weights-4bit mlx-community/Meta-Llama-3-8B-Instruct-4bit | |
yarn | |
echo Hello | node chat.js weights-4bit | |
publish: | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get tag | |
run: echo "VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Set package version | |
run: | | |
npm config set git-tag-version=false | |
npm version $VERSION | |
- name: Install deps | |
run: yarn | |
- name: Publish npm package | |
uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
access: public |