Skip to content

Commit

Permalink
Setup addon docs auto publish
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbieTheWagner committed Dec 4, 2024
1 parent 7f9f4dc commit 1f45f2a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/addon-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish Docs

on:
push:
branches:
- main
tags:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: Install Dependencies
run: pnpm install --no-lockfile
- name: Deploy Docs
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
cd test-app
pnpm ember deploy production

0 comments on commit 1f45f2a

Please sign in to comment.