@@ -30,33 +30,54 @@ jobs:
30
30
run : |
31
31
deno task dnt
32
32
deno task minify > ../../npm-packages/x/core/hpke-core.min.js
33
+ - name : Publish to npm (dry) for /x/core
34
+ working-directory : ./npm-packages/x/core
35
+ run : npm publish --dry-run
33
36
- name : Run dnt & minify for /x/chacha20poly1305
34
37
working-directory : ./x/chacha20poly1305
35
38
run : |
36
39
deno task dnt
37
40
deno task minify > ../../npm-packages/x/chacha20poly1305/hpke-chacha20poly1305.min.js
41
+ - name : Publish to npm (dry) for /x/chacha20poly1305
42
+ working-directory : ./npm-packages/x/chacha20poly1305
43
+ run : npm publish --dry-run
38
44
- name : Run dnt & minify for /x/dhkem-x25519
39
45
working-directory : ./x/dhkem-x25519
40
46
run : |
41
47
deno task dnt
42
48
deno task minify > ../../npm-packages/x/dhkem-x25519/hpke-dhkem-x25519.min.js
49
+ - name : Publish to npm (dry) for /x/dhkem-x25519
50
+ working-directory : ./npm-packages/x/dhkem-x25519
51
+ run : npm publish --dry-run
43
52
- name : Run dnt & minify for /x/dhkem-x448
44
53
working-directory : ./x/dhkem-x448
45
54
run : |
46
55
deno task dnt
47
56
deno task minify > ../../npm-packages/x/dhkem-x448/hpke-dhkem-x448.min.js
57
+ - name : Publish to npm (dry) for /x/dhkem-x448
58
+ working-directory : ./npm-packages/x/dhkem-x448
59
+ run : npm publish --dry-run
48
60
- name : Run dnt & minify for /x/hybridkem-x25519-kyber768
49
61
working-directory : ./x/hybridkem-x25519-kyber768
50
62
run : |
51
63
deno task dnt
52
64
deno task minify > ../../npm-packages/x/hybridkem-x25519-kyber768/hpke-hybridkem-x25519-kyber768.min.js
65
+ - name : Publish to npm (dry) for /x/hybridkem-x25519-kyber768
66
+ working-directory : ./npm-packages/x/hybridkem-x25519-kyber768
67
+ run : npm publish --dry-run
53
68
- name : Run dnt & minify for /x/dhkem-secp256k1
54
69
working-directory : ./x/dhkem-secp256k1
55
70
run : |
56
71
deno task dnt
57
72
deno task minify > ../../npm-packages/x/dhkem-secp256k1/hpke-dhkem-secp256k1.min.js
73
+ - name : Publish to npm (dry) for /x/dhkem-secp256k1
74
+ working-directory : ./npm-packages/x/dhkem-secp256k1
75
+ run : npm publish --dry-run
58
76
- name : Run dnt & minify for /x/hpke-js
59
77
working-directory : ./x/hpke-js
60
78
run : |
61
79
deno task dnt
62
80
deno task minify > ../../npm-packages/x/hpke-js/hpke.min.js
81
+ - name : Publish to npm (dry) for /x/hpke-js
82
+ working-directory : ./npm-packages/x/hpke-js
83
+ run : npm publish --dry-run
0 commit comments