File tree 3 files changed +5
-5
lines changed
tests/dummy/app/templates/docs
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 23
23
# Fetch tags pointing to the current commit
24
24
TAGS=$(git tag --points-at $GITHUB_SHA)
25
25
echo "Tags found: $TAGS"
26
-
26
+
27
27
# Check if a tag exists and if the ref is 'refs/heads/main' or 'refs/heads/master'
28
28
if [ -n "$TAGS" ] && ([[ "${GITHUB_REF}" == "refs/heads/main" ]] || [[ "${GITHUB_REF}" == "refs/heads/master" ]]); then
29
29
echo "SHORT_CIRCUIT=true" >> $GITHUB_ENV
41
41
cache : pnpm
42
42
- name : Install Dependencies
43
43
if : env.SHORT_CIRCUIT == 'false'
44
- run : pnpm install --no-lockfile
44
+ run : pnpm install
45
45
- name : Deploy Docs
46
46
if : env.SHORT_CIRCUIT == 'false'
47
- run : pnpm ember deploy production
47
+ run : pnpm ember deploy production
Original file line number Diff line number Diff line change 51
51
with :
52
52
version : 9
53
53
- name : Install dependencies
54
- run : pnpm i --no-lockfile
54
+ run : pnpm i
55
55
- name : Test
56
56
run : pnpm test:${{ matrix.script-name }}
57
57
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ jobs:
136
136
cache : pnpm
137
137
- name : Install Dependencies
138
138
if : env.SHORT_CIRCUIT == 'false'
139
- run : pnpm install --no-lockfile
139
+ run : pnpm install
140
140
- name : Deploy Docs
141
141
if : env.SHORT_CIRCUIT == 'false'
142
142
run : pnpm ember deploy production
You can’t perform that action at this time.
0 commit comments