Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial upload #1

Merged
merged 10 commits into from
Mar 24, 2020
23 changes: 23 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: npm-publish

on:
push:
branches:
- master

jobs:
npm-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
vincerubinetti marked this conversation as resolved.
Show resolved Hide resolved
- name: Set up Node
uses: actions/setup-node@master
with:
node-version: '12.x'
- name: Publish
if: github.ref == 'refs/heads/master'
uses: mikeal/merge-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@greenelab/hclust",
"version": "1.0.0",
"version": "0.0.0",
"description": "Agglomerative hierarchical clustering in JavaScript",
"keywords": [
"hierarchy",
Expand Down