From a761c2249379986ef3d3de27dc3960d886010017 Mon Sep 17 00:00:00 2001 From: myxi Date: Tue, 22 Oct 2024 22:54:29 +0530 Subject: [PATCH] fix(ci): set fetch depth to 0 --- .github/workflows/release-binaries.yml | 2 +- deno.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index 2cd23ad..92f0e5f 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -12,7 +12,7 @@ jobs: - name: Checkout Code uses: actions/checkout@v4 with: - fetch-depth: 100 + fetch-depth: 0 - name: Setup Deno uses: denoland/setup-deno@v2 diff --git a/deno.json b/deno.json index 40a9d2c..9191bd8 100644 --- a/deno.json +++ b/deno.json @@ -1,5 +1,5 @@ { - "version": "0.4.4", + "version": "0.4.5", "tasks": { "start": "deno fmt; deno --check --allow-all src/main.ts", "install": "deno install -gf --name cela --allow-all src/main.ts"