chore(deps): update all non-major dependencies #968
This file contains 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: "preview builder 👀" | |
on: | |
pull_request: | |
workflow_dispatch: | |
env: | |
NUXT_SITE_ENV: staging # used for NuxtSEO to disable things like indexing on staging | |
HUSKY: 0 | |
CI: true | |
jobs: | |
build_and_preview: | |
env: | |
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} | |
ALGOLIA_SEARCH_API_KEY: ${{ secrets.ALGOLIA_SEARCH_API_KEY }} | |
ALGOLIA_APPLICATION_ID: ${{ secrets.ALGOLIA_APPLICATION_ID }} | |
if: ${{ github.event_name == 'workflow_dispatch' || github.event.pull_request.head.repo.full_name == github.repository }} | |
runs-on: ubuntu-latest | |
outputs: | |
output_urls: "${{ steps.preview_deploy.outputs.urls }}" | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: oven-sh/setup-bun@v2 | |
- name: "Install dependencies" | |
run: bun install --production --frozen-lockfile | |
- name: "Deploy target: staging" | |
run: bun run build | |
- name: "Deploy preview" | |
uses: matter-labs/action-hosting-deploy@main | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_ZKSYNC_DOCS_STAGING_5EB09 }}" | |
projectId: zksync-docs-staging-5eb09 |