Skip to content

A Line is actually a LineString, which accepts two or more Points (#268) #24

A Line is actually a LineString, which accepts two or more Points (#268)

A Line is actually a LineString, which accepts two or more Points (#268) #24

Workflow file for this run

name: Publish Package to npmjs
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- uses: actions/checkout@v3
- run: deno task build
- run: cd ./npm && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}