Hey all! We have a terraform-bridged package of fi...
# package-authoring
b
Hey all! We have a terraform-bridged package of fivetran and seem to be having issues with getting the github actions pipelines setup correctly. I was trying to update our repo from tf-boilerplate but noticed the package.json version keeps getting stuck as “${VERSION}“. I noticed lots of other providers built from the boilerplate use
sed -i.bak -e "s/\$${VERSION}/$(VERSION)/g" ./bin/package.json
but the current branch of the boilerplate doesn’t have that. Is there a new/updated way we should be managing the version in our NPM packages as they are built? It seems like when we run the binary for the tfgen, is when it overrides the package.json file to that bash variable no matter what we have set. Any direction would be greatly appreciated! For now, I added the
sed
command back and have it replacing the version with
PROVIDER_VERSION
since that seems to be the correct version in the Makefile but it seems like there is some part of the process I am missing here.