chore(deps): bump msgpack from 1.8.1 to 1.8.2 in /website (#4196) #298
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Push to main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| tests: | |
| name: Run all tests | |
| uses: ./.github/workflows/tests.yml | |
| publish: | |
| name: Publish docs website to Netlify | |
| runs-on: ubuntu-latest | |
| if: github.actor != 'dependabot[bot]' | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 | |
| with: | |
| node-version-file: .nvmrc | |
| # Setup docs site | |
| - uses: ruby/setup-ruby@003a5c4d8d6321bd302e38f6f0ec593f77f06600 # v1.319.0 | |
| with: | |
| ruby-version: "4.0.5" | |
| bundler-cache: true | |
| working-directory: website | |
| # Install dependencies | |
| - run: npm ci | |
| working-directory: website | |
| - run: ./bin/static-build | |
| working-directory: website | |
| - name: Deploy production to Netlify | |
| uses: South-Paw/action-netlify-deploy@2e5ce944afb065f54453c5cc03291670687b454b | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| netlify-auth-token: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
| netlify-site-id: ${{ secrets.NETLIFY_SITE_ID }} | |
| build-dir: ./website/build | |
| config-path: ./netlify.toml |