We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e9cd1f commit c658bc2Copy full SHA for c658bc2
entrypoint.sh
@@ -14,6 +14,10 @@ function installTypescript(){
14
npm install typescript
15
}
16
17
+function runGoModuleFetch() {
18
+ go mod tidy
19
+}
20
+
21
function installAwsCdk(){
22
echo "Install aws-cdk ${INPUT_CDK_VERSION}"
23
if [ "${INPUT_CDK_VERSION}" == "latest" ]; then
@@ -99,6 +103,7 @@ function main(){
99
103
cd ${GITHUB_WORKSPACE}/${INPUT_WORKING_DIR}
100
104
ls ${GITHUB_WORKSPACE}
101
105
#installTypescript
106
+ runGoModuleFetch
102
107
installAwsCdk
108
#installPipRequirements
109
runCdk ${INPUT_CDK_ARGS}
0 commit comments