We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8692c5d commit 7f37237Copy full SHA for 7f37237
.github/workflows/addon-docs.yml
@@ -12,6 +12,29 @@ jobs:
12
env:
13
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
14
runs-on: ubuntu-latest
15
+ if: "!startsWith(github.ref, 'refs/tags/')"
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ token: ${{ secrets.GITHUB_TOKEN }}
20
+ - uses: pnpm/action-setup@v4
21
22
+ version: 9
23
+ - uses: actions/setup-node@v4
24
25
+ node-version: 18
26
+ cache: pnpm
27
+ - name: Install Dependencies
28
+ run: pnpm install --no-lockfile
29
+ - name: Deploy Docs
30
+ run: |
31
+ pnpm ember deploy production
32
+
33
+ tag-build:
34
+ env:
35
+ DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
36
+ runs-on: ubuntu-latest
37
+ if: startsWith(github.ref, 'refs/tags/')
38
steps:
39
- uses: actions/checkout@v4
40
with:
0 commit comments