fix 安卓点击通知不回调问题,更新版本号为3.1.8 #61
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | |
| name: npm-publish | |
| on: | |
| push: | |
| branches: | |
| - master # Change this to your default branch | |
| jobs: | |
| npm-publish: | |
| name: npm-publish | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@master | |
| - name: Set up Node.js | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: 10.0.0 | |
| registry-url: https://registry.npmjs.org/ | |
| - run: npm publish | |
| env: # More info about the environment variables in the README | |
| NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} # You need to set this in your repo settings |