We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 909b614 commit 6644550Copy full SHA for 6644550
.github/workflows/deploy.yml
@@ -0,0 +1,21 @@
1
+name: deploy
2
+on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+jobs:
7
+ lint:
8
+ runs-on: ['ubuntu-22.04']
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: actions/setup-node@v3
12
+ with:
13
+ node-version: 16
14
+ - uses: actions/setup-python@v4
15
16
+ python-version: '3.7.16'
17
+ - run: npm install
18
+ - run: touch jnitrace/build/__init__.py
19
+ - uses: pypa/gh-action-pypi-publish@release/v1
20
21
+ password: ${{ secrets.PYPI_API_TOKEN }}
package.json
@@ -1,6 +1,6 @@
{
"name": "jnitrace",
- "version": "3.3.0",
+ "version": "3.3.1",
"description": "A tool for tracing use of the JNI in Android apps",
"private": true,
"main": "jnitrace/src/main.js",
0 commit comments