Skip to content

Commit 6395255

Browse files
authored
chore: fix workflow failure on lts post publish (denoland#29288)
1 parent 784c6a5 commit 6395255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/post_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
- name: Upload version file to dl.deno.land
3232
run: |
3333
echo ${GITHUB_REF#refs/*/} > release-latest.txt
34-
deno run --allow-net tools/release/version_greater_latest.ts ${GITHUB_REF#refs/*/} && gsutil -h "Cache-Control: no-cache" cp release-latest.txt gs://dl.deno.land/release-latest.txt
34+
(deno run --allow-net tools/release/version_greater_latest.ts ${GITHUB_REF#refs/*/} || exit 0) && gsutil -h "Cache-Control: no-cache" cp release-latest.txt gs://dl.deno.land/release-latest.txt

0 commit comments

Comments
 (0)