Skip to content

Commit 951eb1b

Browse files
committed
give 'fetch tags' step a name
1 parent 618f22a commit 951eb1b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434
uses: actions/checkout@v2
3535
with:
3636
fetch-depth: 3
37-
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
37+
- name: Fetch tags
38+
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
3839

3940
- name: Install dependencies
4041
run: |

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
uses: actions/checkout@v2
2626
with:
2727
fetch-depth: 3
28-
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
28+
- name: Fetch tags
29+
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2930

3031
- name: Install dependencies
3132
run: |

0 commit comments

Comments
 (0)