Skip to content

Commit d2fe82a

Browse files
committed
fix: fix docker base name
1 parent b2cf91c commit d2fe82a

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
path: |
3939
~/.pnpm-store
4040
D:\.pnpm-store
41+
./node_modules
4142
key: "setupcpp-cache-OS:${{ matrix.os }}-node:${{ matrix.node }}-pnpm:${{ matrix.pnpm }}-${{ hashFiles('./.npmrc') }}-deps:${{ hashFiles('./package.json') }}"
4243
restore-keys: |
4344
"setupcpp-cache-OS:${{ matrix.os }}-"
@@ -151,6 +152,7 @@ jobs:
151152
path: |
152153
~/.pnpm-store
153154
D:\.pnpm-store
155+
./node_modules
154156
key: "setupcpp-docker-cache-OS:${{ matrix.os }}-${{ hashFiles('./.npmrc') }}-deps:${{ hashFiles('./package.json') }}"
155157
restore-keys: |
156158
"setupcpp-docker-cache-OS:${{ matrix.os }}"

dev/docker/__tests__/arch.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN node /setup-cpp.js --compiler llvm --cmake true --ninja true --cppcheck true
1515
ENTRYPOINT ["/bin/bash"]
1616

1717
#### Building (example)
18-
FROM setup-cpp AS example-builder
18+
FROM base AS example-builder
1919
COPY ./dev/cpp_vcpkg_project /home/app
2020
WORKDIR /home/app
2121
RUN bash -c 'source ~/.cpprc \

dev/docker/__tests__/fedora.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN node /setup-cpp.js --compiler llvm --cmake true --ninja true --cppcheck true
1414
ENTRYPOINT ["/bin/bash"]
1515

1616
#### Building (example)
17-
FROM setup-cpp AS example-builder
17+
FROM base AS example-builder
1818
COPY ./dev/cpp_vcpkg_project /home/app
1919
WORKDIR /home/app
2020
RUN bash -c 'source ~/.cpprc \

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
"repository": "https://github.com/aminya/setup-cpp",
66
"license": "Apache-2.0",
77
"author": "Amin Yahyaabadi",
8-
"exports": {
9-
"import": "./dist/modern/setup-cpp.mjs",
10-
"require": "./dist/legacy/setup-cpp.js"
11-
},
128
"main": "dist/legacy/setup-cpp.js",
139
"actions": "./dist/actions/setup-cpp.js",
1410
"modern": "./dist/modern/setup-cpp.js",

0 commit comments

Comments
 (0)