feat: add npm distribution packaging (#28) - #29
Merged
Conversation
Add aur/agentflare/{PKGBUILD,.SRCINFO}, a source-build package mirroring
lean-ctx's AUR flow. release.yml now creates a source tarball
(agentflare-<version>-source.tar.gz) via git archive so the AUR build has
something to fetch and compile from on every future tag.
Uses mise's multi-package pattern: platform-specific sub-packages (@getappz/agentflare-linux-x64, etc.) containing the prebuilt binary, and a main 'agentflare' wrapper package that detects the current platform and installs the correct sub-package via a preinstall hook. - scripts/release-npm.sh: downloads release artifacts, creates npm packages - .github/workflows/npm-publish.yml: triggers on release published, runs the script - installArchSpecificPackage.js: embedded in release script, handles platform detection Requires setup before use: 1. Create @getappz npm org and add NPM_TOKEN secret to repo 2. Publish first version via workflow_dispatch with dry_run=false
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uses mise multi-package pattern: platform sub-packages with prebuilt binary, main wrapper with preinstall hook. Script downloads release artifacts, repackages, publishes to npm. Closes #28 (partially).