File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
tests/dummy/app/templates/docs Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2323 # Fetch tags pointing to the current commit
2424 TAGS=$(git tag --points-at $GITHUB_SHA)
2525 echo "Tags found: $TAGS"
26-
26+
2727 # Check if a tag exists and if the ref is 'refs/heads/main' or 'refs/heads/master'
2828 if [ -n "$TAGS" ] && ([[ "${GITHUB_REF}" == "refs/heads/main" ]] || [[ "${GITHUB_REF}" == "refs/heads/master" ]]); then
2929 echo "SHORT_CIRCUIT=true" >> $GITHUB_ENV
4141 cache : pnpm
4242 - name : Install Dependencies
4343 if : env.SHORT_CIRCUIT == 'false'
44- run : pnpm install --no-lockfile
44+ run : pnpm install
4545 - name : Deploy Docs
4646 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 5151 with :
5252 version : 9
5353 - name : Install dependencies
54- run : pnpm i --no-lockfile
54+ run : pnpm i
5555 - name : Test
5656 run : pnpm test:${{ matrix.script-name }}
5757
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ jobs:
136136 cache : pnpm
137137 - name : Install Dependencies
138138 if : env.SHORT_CIRCUIT == 'false'
139- run : pnpm install --no-lockfile
139+ run : pnpm install
140140 - name : Deploy Docs
141141 if : env.SHORT_CIRCUIT == 'false'
142142 run : pnpm ember deploy production
You can’t perform that action at this time.
0 commit comments