File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -113,12 +113,8 @@ RUN cd /tmp && \
113113 repo=$(echo "$ext" | cut -d'|' -f1) && \
114114 build_cmd=$(echo "$ext" | cut -d'|' -f2) && \
115115 output_file=$(echo "$ext" | cut -d'|' -f3) && \
116- # Fetch the latest release tag from GitHub API
117- echo "Fetching latest release for $repo..." && \
118- latest_tag=$(curl -s "https://api.github.com/repos/microsoft/$repo/releases/latest" | jq -r .tag_name) && \
119- echo "Using version: $latest_tag" && \
120- # Clone the repository at the latest release tag
121- git clone --branch "$latest_tag" --depth 1 "https://github.com/microsoft/$repo.git" && \
116+ # Clone the latest commit from the main branch
117+ git clone --depth 1 "https://github.com/microsoft/$repo.git" && \
122118 cd "$repo" && \
123119 # Modify package.json to remove the editor/title/run contributions if it exists
124120 jq 'del(.contributes.menus."editor/title/run")' package.json > package.tmp.json && \
You can’t perform that action at this time.
0 commit comments