Skip to content

chore(deps): update dependency next to v13.5.0 [security] - autoclosed #115

chore(deps): update dependency next to v13.5.0 [security] - autoclosed

chore(deps): update dependency next to v13.5.0 [security] - autoclosed #115

Workflow file for this run

name: website
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
deployment:
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push'
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: the-guild-org/shared-config/setup@main
name: setup env
with:
nodeVersion: 16 # change if needed
packageManager: pnpm # change if needed
- uses: the-guild-org/shared-config/website-cf@main
name: build and deploy website
env:
NEXT_PUBLIC_ALGOLIA_INDEX_NAME: ${{ secrets.NEXT_PUBLIC_ALGOLIA_INDEX_NAME }}
NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY: ${{ secrets.NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY }}
NEXT_PUBLIC_ALGOLIA_APP_ID: ${{ secrets.NEXT_PUBLIC_ALGOLIA_APP_ID }}
with:
cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: graphql-shield
prId: ${{ github.event.pull_request.number }}
websiteDirectory: ./
buildScript: cd website && pnpm build && pnpm export
artifactDir: website/out