Skip to content

Commit aa3a6cd

Browse files
Trying moving things around
1 parent c33f4ac commit aa3a6cd

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Diff for: .github/workflows/addon-docs.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,8 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
with:
18-
fetch-tags: true
18+
fetch-depth: 0
1919
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
2920
- name: Check for tags
3021
id: check-tags
3122
run: |
@@ -38,7 +29,16 @@ jobs:
3829
echo "has_tag=false" >> $GITHUB_ENV
3930
else
4031
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
4242
- name: Deploy Docs
4343
if: env.has_tag == 'false' || (env.has_tag == 'true' && !startsWith(github.ref, 'refs/heads/main'))
4444
run: pnpm ember deploy production

0 commit comments

Comments
 (0)