Sha256: 71f9b5048d0d2e7d4a885126af37a929497c557d4a319cbee7c3f8ec0fd2bc55
Contents?: true
Size: 678 Bytes
Versions: 15
Compression:
Stored size: 678 Bytes
Contents
# 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: publish on: push: tags: - "*" jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 registry-url: https://registry.npmjs.org/ - run: npm install - run: npm run build - run: npm test - run: npm publish --access=public env: NODE_AUTH_TOKEN: ${{secrets.npm_token}}
Version data entries
15 entries across 15 versions & 1 rubygems