From 4f3e89cb1876fed69fa2a2a3e9d5057d2f61a8fc Mon Sep 17 00:00:00 2001 From: Taco de Wolff Date: Tue, 21 May 2024 14:43:10 -0400 Subject: [PATCH] Fix NodeJS workflow --- .github/workflows/python.yml | 2 -- bindings/js/Makefile | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 2462341096..f44b84f8b7 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -1,8 +1,6 @@ name: Python on: push: - branches: - - master tags: - 'v*' pull_request: diff --git a/bindings/js/Makefile b/bindings/js/Makefile index 62f23f664a..7b4d93cd7d 100644 --- a/bindings/js/Makefile +++ b/bindings/js/Makefile @@ -1,7 +1,7 @@ SHELL=/usr/bin/env bash HASH=`git log -1 --format="%H"` VERSION=`git describe --tags --abbrev=0 | cut -b 2-` -NODE_VERSION=`node -e 'console.log(require('./package.json').version);'` +NODE_VERSION=`node -e 'console.log(require("./package.json").version);'` # needed explicitly for Windows export CGO_ENABLED=1