36
36
path : |
37
37
~/.dub
38
38
~/AppData/Local/dub
39
+ ~/.pnpm
39
40
~/.pnpm-store
40
41
D:\.pnpm-store
42
+ D:\.pnpm
41
43
./.dub
42
44
key : " cache-OS:${{ matrix.os }}-D:${{ matrix.d }}-CXX:${{ matrix.compiler }}-${{ hashFiles('./dub.selections.json', './pnpm-lock.yaml')}} }}"
43
45
restore-keys : |
@@ -90,10 +92,18 @@ jobs:
90
92
with :
91
93
name : minijson-${{ runner.os }}-${{ runner.arch }}
92
94
path : ./dist
95
+ retention-days : 1
93
96
94
97
Release :
98
+ if : startsWith(github.ref, 'refs/tags/')
95
99
runs-on : ubuntu-latest
96
100
needs : build
101
+ strategy :
102
+ matrix :
103
+ node :
104
+ - 20
105
+ pnpm :
106
+ - 9
97
107
steps :
98
108
- name : Merge Artifacts
99
109
uses : actions/upload-artifact/merge@v4
@@ -106,7 +116,7 @@ jobs:
106
116
name : merged-artifacts
107
117
path : dist/
108
118
109
- - name : Prepare
119
+ - name : Prepare Dist
110
120
run : |
111
121
chmod +x ./dist/*/minijson
112
122
zip -9 -j ./dist/minijson-windows-x64.zip ./dist/win32-x64/minijson.exe
@@ -116,7 +126,6 @@ jobs:
116
126
ls -l ./dist
117
127
118
128
- name : Draft the release
119
- if : startsWith(github.ref, 'refs/tags/')
120
129
121
130
with :
122
131
token : ${{ secrets.GITHUB_TOKEN }}
@@ -128,8 +137,22 @@ jobs:
128
137
dist/minijson-macos-arm64.tar.gz
129
138
dist/minijson-linux-x64.tar.gz
130
139
140
+ - uses : actions/checkout@v4
141
+
142
+ - name : Setup Node
143
+ uses : actions/setup-node@v4
144
+ with :
145
+ node-version : ${{ matrix.node }}
146
+
147
+ - name : Setup Pnpm
148
+ uses : pnpm/action-setup@v4
149
+ with :
150
+ version : ${{ matrix.pnpm }}
151
+
152
+ - name : Install dependencies
153
+ run : pnpm install
154
+
131
155
- name : Publish to npm
132
- if : startsWith(github.ref, 'refs/tags/')
133
- run : pnpm publish
156
+ run : npm publish
134
157
env :
135
158
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
0 commit comments