We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ed1ea commit 8e1e5dfCopy full SHA for 8e1e5df
.github/workflows/toc.yml
@@ -10,6 +10,13 @@ jobs:
10
11
steps:
12
- uses: actions/checkout@v2
13
+ with:
14
+ # https://github.com/actions/checkout/issues/217#issue-599945005
15
+ # pulls all commits (needed for lerna / semantic release to correctly version)
16
+ fetch-depth: "0"
17
+
18
+ # pulls all tags (needed for lerna / semantic release to correctly version)
19
+ - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
20
- uses: actions/setup-node@v1
21
with:
22
node-version: '12.x'
0 commit comments