Skip to content

Commit

Permalink
Merge pull request #1634 from tradingview/fix-deploy-node16
Browse files Browse the repository at this point in the history
Fix deploy workflow Node version error
  • Loading branch information
edew committed Jul 9, 2024
2 parents 27d1392 + 2eadfe5 commit 82bb0a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'

- name: Install library dependencies
run: npm install
Expand All @@ -48,7 +48,7 @@ jobs:
run: npm run build:examples:site

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 82bb0a0

Please sign in to comment.