Нет описания

release.yml 542B

1234567891011121314151617181920212223
  1. name: Release
  2. on:
  3. repository_dispatch:
  4. types: [rollingversions_publish_approved]
  5. jobs:
  6. publish:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@v2
  10. - uses: actions/setup-node@v1
  11. with:
  12. node-version: 12.x
  13. - uses: CultureHQ/actions-yarn@master
  14. with:
  15. args: install
  16. - run:
  17. echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
  18. ~/.npmrc
  19. - run:
  20. npx rollingversions publish --github-token ${{ secrets.GITHUB_TOKEN }}