doc: update github-actions.md

This commit is contained in:
jaywcjlove 2022-11-25 09:00:38 +08:00
parent 440e56da2c
commit 88c09562a2

View File

@ -915,6 +915,15 @@ steps:
avatarSize: 42
```
### 忽略失败
```yml
- run: npm publish
continue-on-error: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
```
另见
---