Skip to content

Commit 15aee37

Browse files
committed
Final push
1 parent 819b662 commit 15aee37

File tree

7 files changed

+10
-16
lines changed

7 files changed

+10
-16
lines changed

.github/workflows/push-again.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
# Setup build CLI
6262
cd "$GITHUB_WORKSPACE/ref"
6363
# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
64-
corepack enable
65-
corepack prepare yarn@4.9.4 --activate
64+
sudo corepack enable
65+
sudo corepack prepare yarn@4.9.4 --activate
6666
yarn install
6767
npm install -g @devcontainers/cli
6868

.github/workflows/push-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
az acr login --name $ACR_REGISTRY_NAME --username $TOKEN_NAME --password $PASSWORD
5050
5151
# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
52-
corepack enable
53-
corepack prepare yarn@4.9.4 --activate
52+
sudo corepack enable
53+
sudo corepack prepare yarn@4.9.4 --activate
5454
# Build and push dev images
5555
yarn install
5656
npm install -g @devcontainers/cli

.github/workflows/push-manual-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ jobs:
5757
# Setup build CLI
5858
cd "$GITHUB_WORKSPACE/ref"
5959
# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
60-
corepack enable
61-
corepack prepare yarn@4.9.4 --activate
60+
sudo corepack enable
61+
sudo corepack prepare yarn@4.9.4 --activate
6262
yarn install
6363
npm install -g @devcontainers/cli
6464

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
az acr login --name $ACR_REGISTRY_NAME --username $TOKEN_NAME --password $PASSWORD
5353
5454
# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
55-
corepack enable
56-
corepack prepare yarn@4.9.4 --activate
55+
sudo corepack enable
56+
sudo corepack prepare yarn@4.9.4 --activate
5757
# Build and push images
5858
yarn install
5959
npm install -g @devcontainers/cli

.github/workflows/version-history.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
az acr login --name $ACR_REGISTRY_NAME --username $TOKEN_NAME --password $PASSWORD
6666
6767
# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
68-
corepack enable
69-
corepack prepare yarn@4.9.4 --activate
68+
sudo corepack enable
69+
sudo corepack prepare yarn@4.9.4 --activate
7070
yarn install
7171
RELEASE_STRING=$(echo "${{ inputs.release }}" | grep -oP 'refs/(heads|tags)/\K(.+)')
7272
OVERWRITE_STRING=$(if [ "${{ inputs.overwrite }}" = "false" ]; then echo '--no-overwrite'; else echo '--overwrite'; fi)

src/javascript-node/test-project/test.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ sudo rm -f yarn.lock
1717
sudo touch yarn.lock
1818
sudo rm -rf .yarn/*
1919
sudo chmod a+rw yarn.lock
20-
#sudo mkdir -p .yarn/cache
21-
#sudo chown -R $(id -u):$(id -g) .yarn
22-
#sudo chmod -R a+rwX .yar
2320
check "yarn" yarn install
2421
sudo rm -f package-lock.json
2522
check "npm" npm install

src/typescript-node/test-project/test.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ sudo rm -f yarn.lock
1515
sudo rm -rf .yarn/*
1616
sudo touch yarn.lock
1717
sudo chmod a+rw yarn.lock
18-
sudo mkdir -p .yarn/cache
19-
sudo chown -R $(id -u):$(id -g) .yarn
20-
sudo chmod -R a+rwX .yarn
2118
check "yarn" yarn install
2219
sudo rm -f package-lock.json
2320
check "eslint" eslint --no-warn-ignored src/server.ts

0 commit comments

Comments
 (0)