Skip to content

Commit bdc22fc

Browse files
fix(ci): remove packages prefix (#232)
Signed-off-by: Victor Adossi <[email protected]>
1 parent 37f47cc commit bdc22fc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/create-release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
id: cache-node-modules
3939
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4040
with:
41-
key: node-modules-dev-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('packages/**/package.json') }}
41+
key: node-modules-dev-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('package.json') }}
4242
path: |
4343
node_modules
4444

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
id: cache-node-modules
4545
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4646
with:
47-
key: node-modules-dev-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('packages/**/package.json') }}
47+
key: node-modules-dev-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('package.json') }}
4848
path: |
4949
node_modules
5050
- name: Install debug NPM packages
@@ -85,7 +85,7 @@ jobs:
8585
8686
export PROJECT_DIR=$PWD;
8787
export CURRENT_VERSION=$(node -e "process.stdout.write(require(process.env.PROJECT_DIR + '/package.json').version)");
88-
export ARTIFACTS_GLOB="packages/componentize-js/bytecodealliance-componentize-js-*.tgz";
88+
export ARTIFACTS_GLOB="bytecodealliance-componentize-js-*.tgz";
8989
export ARTIFACT_NAME="bytecodealliance-componentize-js-$NEXT_VERSION.tgz";
9090
9191
echo -e "project-dir=$PROJECT_DIR" >> $GITHUB_OUTPUT;
@@ -119,7 +119,7 @@ jobs:
119119
id: cache-node-modules
120120
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
121121
with:
122-
key: node-modules-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('packages/**/package.json') }}
122+
key: node-modules-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('package.json') }}
123123
path: |
124124
node_modules
125125
- name: Install NPM packages

0 commit comments

Comments
 (0)