Skip to content

Commit

Permalink
fix: java and nodejs sdk fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rawkode committed Sep 29, 2023
1 parent 0b53bd1 commit b1dd0de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ env:
# Java SDK
JAVAVERSION: "11"
JAVA_GEN_VERSION: v0.9.4
JAVA_PUBLISH: "false"
JAVA_PUBLISH: "true"
PUBLISH_REPO_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
PUBLISH_REPO_USERNAME: ${{ secrets.OSSRH_USERNAME }}
SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }}
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ build_nodejs:: install_plugins tfgen # build the node sdk
cd sdk/nodejs/ && \
yarn install && \
yarn run tsc && \
mkdir -p scripts && \
cp -R scripts/ bin && \
cp ../../README.md ../../LICENSE package.json yarn.lock ./bin/ && \
sed -i.bak -e "s/\$${VERSION}/$(VERSION)/g" ./bin/package.json
Expand Down Expand Up @@ -101,7 +102,7 @@ build_java:: $(WORKING_DIR)/bin/$(JAVA_GEN)

$(WORKING_DIR)/bin/$(JAVA_GEN)::
$(shell pulumictl download-binary -n pulumi-language-java -v $(JAVA_GEN_VERSION) -r pulumi/pulumi-java)

lint_provider:: provider # lint the provider code
cd provider && golangci-lint run -c ../.golangci.yml

Expand Down

0 comments on commit b1dd0de

Please sign in to comment.