Publish NPM #4
Workflow file for this run
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
# This workflow is triggered when a GitHub release is created. | |
# It can also be run manually to re-publish to NPM in case it failed for some reason. | |
# You can run this workflow by navigating to https://www.github.com/groq/groq-typescript/actions/workflows/publish-npm.yml | |
name: Publish NPM | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
name: publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: | | |
npm install | |
- name: Publish to NPM | |
run: | | |
bash ./bin/publish-npm | |
env: | |
NPM_TOKEN: ${{ secrets.GROQ_NPM_TOKEN || secrets.NPM_TOKEN }} |