Skip to content

Commit 4e646ca

Browse files
committed
ci: add CI for publishing articats package
1 parent 861ca34 commit 4e646ca

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

.github/workflows/CI.yml

+32-1
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,42 @@ jobs:
9292
name: minijson-${{ runner.os }}-${{ runner.arch }}
9393
path: ./dist
9494

95-
merge-artifacts:
95+
Release:
9696
runs-on: ubuntu-latest
9797
needs: build
9898
steps:
9999
- name: Merge Artifacts
100100
uses: actions/upload-artifact/merge@v4
101101
with:
102102
delete-merged: true
103+
104+
- name: Download All Artifacts
105+
uses: actions/download-artifact@v4
106+
with:
107+
name: merged-artifacts
108+
path: dist/
109+
110+
- name: Prepare
111+
run: |
112+
chmod +x ./dist/*/minijson
113+
zip -9 -j ./dist/minijson-windows-x64.zip ./dist/win32-x64/minijson.exe
114+
tar -czf ./dist/minijson-macos-x64.tar.gz -C ./dist/darwin-x64 minijson
115+
tar -czf ./dist/minijson-macos-arm64.tar.gz -C ./dist/darwin-arm64 minijson
116+
tar -czf ./dist/minijson-linux-x64.tar.gz -C ./dist/linux-x64 minijson
117+
118+
- name: Draft the release
119+
if: startsWith(github.ref, 'refs/tags/')
120+
uses: meeDamian/[email protected]
121+
with:
122+
token: ${{ secrets.GITHUB_TOKEN }}
123+
gzip: folders
124+
draft: true
125+
files: >
126+
dist/minijson-windows-x64.zip
127+
dist/minijson-macos-x64.tar.gz
128+
dist/minijson-macos-arm64.tar.gz
129+
dist/minijson-linux-x64.tar.gz
130+
131+
- name: Publish to npm
132+
if: startsWith(github.ref, 'refs/tags/')
133+
run: pnpm publish --access public

Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# minijson
22

3-
Minify JSON files **blazing fast**! Supports Comments. Uses D, C, and AVX2 and SSE4_1 SIMD.
3+
Minify JSON files blazing fast, removing comments/whitespace.
44

5-
4180 times faster than jsonminify!
5+
Uses D, C, and AVX2 and SSE4_1 SIMD. 4180 times faster than jsonminify!
66

77
[![CI](https://github.com/aminya/minijson/actions/workflows/CI.yml/badge.svg)](https://github.com/aminya/minijson/actions/workflows/CI.yml)
88

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aminya/minijson",
33
"version": "1.0.3",
4-
"description": "Minify JSON files blazing fast! Supports Comments. Uses D, C, and AVX2 and SSE4_1 SIMD",
4+
"description": "Minify JSON files blazing fast, removing comments/whitespace.",
55
"homepage": "https://github.com/aminya/minijson",
66
"license": "MIT",
77
"author": "Amin Yahyaabdi",

0 commit comments

Comments
 (0)