Skip to content

fix neohome-rs

fix neohome-rs #266

Workflow file for this run

name: Deploy
concurrency: deploy
on:
push:
branches:
- astro
env:
DISTDIR: ./dist
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Install Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Checkout
uses: actions/checkout@main
- name: Build
run: |
out="$(nix build .^out --print-out-paths --no-link --print-build-logs)"
cp -vrL "$out/lib/node_modules/neohome/dist" "${{ env.DISTDIR }}"
- name: Publish
uses: cloudflare/wrangler-action@2.0.0
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
command: pages deploy --project-name=neohome --commit-hash "$GITHUB_SHA" "${{ env.DISTDIR }}"