Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Nov 24, 2023
2 parents 34fd204 + 1fb8708 commit 9e0f549
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/release_npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Release Gensplore Component

on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install jq
run: sudo apt-get install jq

- name: Update package version and release
run: |
cd taxonium_component
TAG_NAME=${GITHUB_REF#refs/tags/}
echo "Current tag is $TAG_NAME"
jq ".version = \"$TAG_NAME\"" package.json > package.json.tmp && mv package.json.tmp package.json
yarn install
yarn build
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
npm publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_OPTIONS: --max-old-space-size=4096

1 comment on commit 9e0f549

@vercel
Copy link

@vercel vercel bot commented on 9e0f549 Nov 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.