diff --git a/.github/workflows/build-binary.yml b/.github/workflows/build-binary.yml index 97f9f38..debc612 100644 --- a/.github/workflows/build-binary.yml +++ b/.github/workflows/build-binary.yml @@ -24,6 +24,7 @@ jobs: - name: Build phantomake run: | bun run build + chmod +x phantomake tar -zcvf phantomake-linux.tar.gz phantomake - uses: actions/upload-artifact@v4 with: @@ -57,6 +58,7 @@ jobs: bun build src/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile=phantomake-arm64 bun build src/cli.ts --compile --minify --target=bun-darwin-x64 --outfile=phantomake-x64 lipo -create -output phantomake phantomake-arm64 phantomake-x64 + chmod +x phantomake tar -zcvf phantomake-macos.tar.gz phantomake - uses: actions/upload-artifact@v4 with: diff --git a/packages/phantomake/package.json b/packages/phantomake/package.json index b2f467f..93c37f5 100644 --- a/packages/phantomake/package.json +++ b/packages/phantomake/package.json @@ -1,7 +1,7 @@ { "name": "phantomake", "description": "A file-focused static site generator", - "version": "0.4.25", + "version": "0.4.26", "license": "ISC", "module": "src/index.ts", "bin": "./src/cli.ts",