Skip to content

Commit 13868c7

Browse files
committed
Fix CI
1 parent 007ef2c commit 13868c7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/upload-binaries.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
linux:
13-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-20.04
1414
strategy:
1515
matrix:
1616
target:
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
node-version: "16"
3737
- name: GCloud
38-
uses: google-github-actions/setup-gcloud@v0
38+
uses: google-github-actions/setup-gcloud@v1
3939
with:
4040
project_id: ${{ secrets.GCP_PROJECT_ID }}
4141
service_account_key: ${{ secrets.GCP_SA_KEY }}
@@ -84,7 +84,7 @@ jobs:
8484
with:
8585
node-version: "16"
8686
- name: GCloud
87-
uses: google-github-actions/setup-gcloud@v0
87+
uses: google-github-actions/setup-gcloud@v1
8888
with:
8989
project_id: ${{ secrets.GCP_PROJECT_ID }}
9090
service_account_key: ${{ secrets.GCP_SA_KEY }}
@@ -94,7 +94,7 @@ jobs:
9494
rustup target add ${{ matrix.target }}
9595
$env:RUSTFLAGS="-C target-feature=+crt-static" # crt-static is set with RUSTFLAGS to statically link MSVCRT (VCRUNTIME140.dll)
9696
cargo build -p tmc-langs-cli --release --target ${{ matrix.target }}
97-
cd ./bindings/tmc-langs-node && npm install && npm run build -- --release --target ${{ matrix.target }}
97+
cd ./crates/bindings/tmc-langs-node && npm install && npm run build -- --release --target ${{ matrix.target }}
9898
- name: Deploy
9999
run: |
100100
$env:python_version=$(python -c 'import sys; print(\".\".join(map(str, sys.version_info[:3])))')
@@ -119,7 +119,7 @@ jobs:
119119
with:
120120
node-version: "16"
121121
- name: GCloud
122-
uses: google-github-actions/setup-gcloud@v0
122+
uses: google-github-actions/setup-gcloud@v1
123123
with:
124124
project_id: ${{ secrets.GCP_PROJECT_ID }}
125125
service_account_key: ${{ secrets.GCP_SA_KEY }}
@@ -153,7 +153,7 @@ jobs:
153153
with:
154154
node-version: "16"
155155
- name: GCloud
156-
uses: google-github-actions/setup-gcloud@v0
156+
uses: google-github-actions/setup-gcloud@v1
157157
with:
158158
project_id: ${{ secrets.GCP_PROJECT_ID }}
159159
service_account_key: ${{ secrets.GCP_SA_KEY }}

0 commit comments

Comments
 (0)