File tree 1 file changed +11
-11
lines changed
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 15
15
steps :
16
16
- uses : actions/checkout@v4
17
17
with :
18
- fetch-tags : true
18
+ fetch-depth : 0
19
19
token : ${{ secrets.GITHUB_TOKEN }}
20
- - uses : pnpm/action-setup@v4
21
- with :
22
- version : 9
23
- - uses : actions/setup-node@v4
24
- with :
25
- node-version : 18
26
- cache : pnpm
27
- - name : Install Dependencies
28
- run : pnpm install --no-lockfile
29
20
- name : Check for tags
30
21
id : check-tags
31
22
run : |
38
29
echo "has_tag=false" >> $GITHUB_ENV
39
30
else
40
31
echo "has_tag=true" >> $GITHUB_ENV
41
- fi
32
+ fi
33
+ - uses : pnpm/action-setup@v4
34
+ with :
35
+ version : 9
36
+ - uses : actions/setup-node@v4
37
+ with :
38
+ node-version : 18
39
+ cache : pnpm
40
+ - name : Install Dependencies
41
+ run : pnpm install --no-lockfile
42
42
- name : Deploy Docs
43
43
if : env.has_tag == 'false' || (env.has_tag == 'true' && !startsWith(github.ref, 'refs/heads/main'))
44
44
run : pnpm ember deploy production
You can’t perform that action at this time.
0 commit comments