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

Lines changed: 0 additions & 137 deletions
This file was deleted.

.github/workflows/chrome.yml

Lines changed: 0 additions & 73 deletions
This file was deleted.

.github/workflows/ios.yml

Lines changed: 0 additions & 101 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/workflows/publish-npm.yml

Lines changed: 17 additions & 0 deletions
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)