Skip to content

Commit 28245e9

Browse files
committed
Merge remote-tracking branch 'ns0m/master' into allowed-app-dirs-external-sdcards
2 parents 5731347 + 60212b2 commit 28245e9

15 files changed

+567
-968
lines changed

.github/workflows/android.yml

-137
This file was deleted.

.github/workflows/chrome.yml

-73
This file was deleted.

.github/workflows/ios.yml

-101
This file was deleted.

.github/workflows/lint.yml

-56
This file was deleted.

.github/workflows/publish-npm.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Publish NPM
2+
on:
3+
release:
4+
types: [created]
5+
jobs:
6+
publish-npm:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version: 18
13+
registry-url: https://registry.npmjs.org/
14+
- run: npm ci
15+
- run: npm publish --access public
16+
env:
17+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 commit comments

Comments
 (0)