Skip to content

Commit b252356

Browse files
Publish to npmjs
1 parent 4fbca16 commit b252356

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
- name: Install
2626
id: install
2727
run: npm install
28+
- name: Publish to npmjs
29+
if: ${{ steps.release.outputs.released == 'true' }}
30+
run: npm publish --access public
31+
env:
32+
NODE_AUTH_TOKEN: ${{ secrets.NPMJS }}
2833
- name: Release
2934
id: release
3035
uses: justincy/[email protected]

package-lock.json

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
{
22
"name": "frida-cshell",
3-
"version": "1.9.4",
4-
"description": "Frida's CShell",
3+
"description": "Frida CShell",
4+
"version": "1.9.5",
5+
"keywords": [
6+
"frida-gum"
7+
],
8+
"license": "wxWindows Library Licence, Version 3.1",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/WorksButNotTested/frida-cshell.git"
12+
},
13+
"authors": [
14+
"WorksButNotTested"
15+
],
516
"scripts": {
617
"prepare": "npm run version && npm run build && npm run package && npm run copy",
718
"build": "frida-compile src/entrypoint.ts -o frida-cshell.js -c",

0 commit comments

Comments
 (0)