diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3a4183b5dd..6d3ea6477a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,8 +11,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: yarn install - - run: cd site && yarn install + - name: Setup Node.js environment + uses: actions/setup-node@v2.1.5 + with: + node-version: '20' + - run: npm install + - run: cd site && npm install - run: cd site && npm run build - run: cp ./site/CNAME ./site/dist/CNAME - run: |