dmenu for bitwarden-cli
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
386 B

  1. name: Npm Publish
  2. on:
  3. release:
  4. types: [created]
  5. jobs:
  6. publish-npm:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@v2
  10. - uses: actions/setup-node@v1
  11. with:
  12. node-version: 12
  13. registry-url: https://registry.npmjs.org/
  14. - run: npm ci
  15. - run: npm publish
  16. env:
  17. NODE_AUTH_TOKEN: ${{secrets.npm_token}}