Generate random, alliterated animal names.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(actions): add Release action

Automatically create versioned tags and publish to NPM on push to master
using semantic-release

+24
+24
.github/workflows/release.yml
··· 1 + name: Release 2 + on: 3 + push: 4 + branches: 5 + - master 6 + 7 + jobs: 8 + release: 9 + name: Release 10 + runs-on: ubuntu-18.04 11 + steps: 12 + - name: Checkout 13 + uses: actions/checkout@v1 14 + - name: Setup Node.js 15 + uses: actions/setup-node@v1 16 + with: 17 + node-version: 14 18 + - name: Install dependencies 19 + run: npm ci 20 + - name: Release 21 + env: 22 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 23 + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 24 + run: npx semantic-release