Skip to content

fix deploy

fix deploy #100

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Deploy
concurrency: deploy
on:
push:
branches:
- astro
env:
DISTDIR: /tmp/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)"
cp -vrL "$out/lib/node_modules/neohome/dist" "${{ env.DISTDIR }}"
- name: Publish
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
command: pages deploy --project-name=neohome --branch preview "${{ env.DISTDIR }}"