Skip to content

Commit

Permalink
Fix env var type
Browse files Browse the repository at this point in the history
  • Loading branch information
pgilad committed Jun 3, 2024
1 parent 6dfc412 commit fecc2c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: build-${{ env.DEFAULT_OS_VERSION }}-${{ env.DEFULAT_NODE_VERSION }}
name: build-${{ env.DEFAULT_OS_VERSION }}-${{ env.DEFAULT_NODE_VERSION }}
- name: Check artifact
run: test -d "./dist"

Expand All @@ -98,7 +98,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: build-${{ env.DEFAULT_OS_VERSION }}-${{ env.DEFULAT_NODE_VERSION }}
name: build-${{ env.DEFAULT_OS_VERSION }}-${{ env.DEFAULT_NODE_VERSION }}
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v4
with:
Expand All @@ -113,7 +113,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: build-${{ env.DEFAULT_OS_VERSION }}-${{ env.DEFULAT_NODE_VERSION }}
name: build-${{ env.DEFAULT_OS_VERSION }}-${{ env.DEFAULT_NODE_VERSION }}
- name: Use Node.js ${{ env.DEFAULT_NODE_VERSION }} with NPM registry
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit fecc2c9

Please sign in to comment.