Skip to content

chore: Update GitHub Actions workflow for releasing and publishing pa… #9

chore: Update GitHub Actions workflow for releasing and publishing pa…

chore: Update GitHub Actions workflow for releasing and publishing pa… #9

Workflow file for this run

name: Create Release and Publish to npm
on:
push:
branches:
- main
jobs:
release:
name: Create Release and Publish to npm
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm install
# - name: Run tests
# run: npm test
- name: Bump version and create tag
id: bump_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: ''
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ steps.bump_version.outputs.new_tag }}
release_name: Release ${{ steps.bump_version.outputs.new_tag }}
body: |
Release notes for ${{ steps.bump_version.outputs.new_tag }}
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}