Skip to content

Commit 7502726

Browse files
committed
feat(mian): support iam features
1 parent f9157c1 commit 7502726

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
- name: Check worktree clean
112112
run: |
113113
git update-index -q --refresh
114-
if ! git diff-files --quiet; then
114+
if ! git diff-files --quiet -- ':(exclude)yarn.lock' ':(exclude)sdk/nodejs/yarn.lock'; then
115115
>&2 echo "error: working tree is not clean, aborting!"
116116
git status
117117
git diff

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ build_nodejs:: VERSION := $(shell pulumictl get version --language javascript)
6161
build_nodejs:: install_plugins tfgen # build the node sdk
6262
$(WORKING_DIR)/bin/$(TFGEN) nodejs --overlays provider/overlays/nodejs --out sdk/nodejs/
6363
cd sdk/nodejs/ && \
64-
yarn install --frozen-lockfile && \
64+
yarn install && \
6565
yarn run tsc && \
6666
cp ../../README.md ../../LICENSE package.json yarn.lock ./bin/ && \
6767
sed -i.bak -e "s/\$${VERSION}/$(VERSION)/g" ./bin/package.json

0 commit comments

Comments
 (0)