Skip to content

Commit 4e0e2e3

Browse files
authored
Fix Release Workflow (#8)
1 parent 20bd435 commit 4e0e2e3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/release.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
- uses: actions/checkout@v4
4343
with:
4444
ref: ${{ inputs.branch }}
45+
fetch-depth: 0
4546

4647
- name: Build
4748
run: cargo build --release --verbose
@@ -69,6 +70,8 @@ jobs:
6970
steps:
7071
- name: Checkout
7172
uses: actions/checkout@v4
73+
with:
74+
fetch-depth: 0
7275

7376
- name: Get Latest Tag
7477
id: get_latest_tag
@@ -107,9 +110,9 @@ jobs:
107110

108111
- name: Zip Artifacts
109112
run: |
110-
cd artifacts
111-
zip -r ../task-tracker-cli-release.zip .
112-
cd ..
113+
cd artifacts
114+
zip -r ../task-tracker-cli-release.zip .
115+
cd ..
113116
114117
- name: Create Git Tag
115118
run: |

0 commit comments

Comments
 (0)