Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Commit baa3593

Browse files
committed
Update release and test-build workflows to cache main.ts
- Updated release.yml and test-build.yml to cache src/main.ts instead of main.ts - Removed deno.lock file before caching
1 parent 9006b72 commit baa3593

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build Executables
2323
run: |
2424
rm -f deno.lock
25-
deno cache main.ts
25+
deno cache src/main.ts
2626
deno run --allow-read --allow-write --allow-run="git,vim,gh,deno" scripts/build.ts
2727
2828
- name: Generate Release Notes

.github/workflows/test-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
- name: Test Build
2727
run: |
2828
rm -f deno.lock
29-
deno cache main.ts
29+
deno cache src/main.ts
3030
deno run --allow-read --allow-write --allow-run="git,vim,gh,deno" scripts/build.ts

0 commit comments

Comments
 (0)