Skip to content

Commit

Permalink
Merge pull request #2309 from SergeAstapov/setup-deploy-ci
Browse files Browse the repository at this point in the history
Added docs deploy as a github action
  • Loading branch information
SergeAstapov authored Jan 14, 2022
2 parents 967e442 + 7f32d21 commit ce184a9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI Publish

on:
workflow_dispatch: {}

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 12.x
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Run Browser Tests
run: yarn test:ember
- name: deploy docs
run: node_modules/.bin/ember deploy production

0 comments on commit ce184a9

Please sign in to comment.