diff options
| author | Luca Casonato <hello@lcas.dev> | 2021-07-21 18:39:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-21 18:39:20 +0200 |
| commit | 31afd349d2b8963152e214042b36f8bd7e039fa4 (patch) | |
| tree | abcc79a13b45d7f6f9b3b13bbfce7c57743d78d6 | |
| parent | 63546c15bfb1284ac6d956eee274e6d7cf263a8f (diff) | |
build: fix publishing of canaries (#11480)
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79d41d99e..bcdc810ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -588,5 +588,5 @@ jobs: - name: Upload canary version file to dl.deno.land run: | - echo $(git rev-parse HEAD) > canary-latest.txt + echo ${{ github.sha }} > canary-latest.txt gsutil cp canary-latest.txt gs://dl.deno.land/canary-latest.txt |
