Skip to content

chore: bump package version #66

chore: bump package version

chore: bump package version #66

Workflow file for this run

name: NPM Publish and GITHUB Release
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
- run: yarn install
- run: npm run prepublish
- id: publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
- if: ${{ steps.publish.outputs.type != 'none' }}
name: "Create GH Release"
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
title: cerebro-todoist ${{ steps.publish.outputs.version }}
automatic_release_tag: ${{ steps.publish.outputs.version }}