Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit b742ef0

Browse files
authored
Fix problem with symlinks
1 parent cb11372 commit b742ef0

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/version-history.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,11 @@ jobs:
6969
ACR_REGISTRY_NAME=$(echo ${{ secrets.REGISTRY }} | grep -oP '(.+)(?=\.azurecr\.io)')
7070
az acr login --name $ACR_REGISTRY_NAME
7171
72-
# Setup build CLI
73-
cd "$GITHUB_WORKSPACE/ref"
74-
yarn install
75-
76-
# Go to the release, symlink the build tool from ref since this is the version for the workflow
72+
# Go to the release, copy the build tool from ref since this is the version for the workflow
7773
cd "$GITHUB_WORKSPACE/release"
7874
rm -rf build node_modules
79-
ln -s "$GITHUB_WORKSPACE/ref/build" build
80-
ln -s "$GITHUB_WORKSPACE/ref/node_modules" node_modules
75+
cp -r "$GITHUB_WORKSPACE/ref/build" "$GITHUB_WORKSPACE/release/"
76+
yarn install
8177
8278
# Pull images and update cgmanifest.json, but output back to ref
8379
build/vscdc info --no-build \

0 commit comments

Comments
 (0)