Skip to content

Commit

Permalink
See if we can do test builds
Browse files Browse the repository at this point in the history
  • Loading branch information
pwolanin committed Dec 11, 2024
1 parent 2f919fe commit b2a9a2d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,15 @@ jobs:

# Deployment job
- name: Deploy 🚀
if: ${{ github.ref_name == 'master' }}
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
with:
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: build # The folder the action should deploy.
- name: Test build
if: ${{ github.ref_name != 'master' }}
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
BRANCH: gh-pages-test # The branch the action should deploy to.
FOLDER: build # The folder the action should deploy.

0 comments on commit b2a9a2d

Please sign in to comment.