Release #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
inputs: | |
node_version: | |
description: 'Node.js Version' | |
required: true | |
default: '14' | |
release_version: | |
description: 'Release Version' | |
required: true | |
jobs: | |
npm-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ github.event.inputs.node_version }} | |
registry-url: 'https://registry.npmjs.org/' | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build # assuming you have a build script in your package.json | |
continue-on-error: true # allows the workflow to continue even if this step fails (there is a bug in OpenAI dep) | |
- name: Update package version | |
run: npm version ${{ github.event.inputs.release_version }} --no-git-tag-version | |
- name: Publish package | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |