Skip to content

Commit

Permalink
Set CI = false when building
Browse files Browse the repository at this point in the history
  • Loading branch information
ulrikstrid authored Oct 24, 2023
1 parent 2b6cd46 commit 1dce6f4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,13 @@ jobs:
node-version: 16
cache: "yarn"
cache-dependency-path: 'yarn.lock'
- name: Install dependencies
run: yarn install
- name: Build Project
run: |
yarn install
yarn build
run: yarn build
env:
# Must set CI to false because otherwise warnings are treated as errors
CI: false
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
Expand Down

0 comments on commit 1dce6f4

Please sign in to comment.