Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kaelynj committed Nov 2, 2023
2 parents 01c9dd3 + 85c95d8 commit 5669b46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy to GitHub Pages
on:
push:
branches:
- main
- master
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

Expand All @@ -24,7 +24,7 @@ jobs:
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Build website
run: npm build
run: npm run build

# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test deployment
on:
pull_request:
branches:
- main
- master
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

Expand All @@ -21,4 +21,4 @@ jobs:
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Test build website
run: npm build
run: npm run build

0 comments on commit 5669b46

Please sign in to comment.