Adding analysis code back #271
Workflow file for this run
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: Stage site on Firebase | |
on: | |
pull_request: | |
branches: | |
- main | |
# Declare default permissions as read only. | |
permissions: read-all | |
env: | |
NODE_VERSION: 20 | |
jobs: | |
stage: | |
permissions: | |
contents: read | |
checks: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.head.repo.full_name == 'cfug/flutter.cn' }} | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
with: | |
submodules: recursive | |
- name: Enable Corepack | |
run: corepack enable | |
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'pnpm' | |
- name: Setup pnpm | |
run: corepack install | |
- name: Install node dependencies | |
run: pnpm install --frozen-lockfile | |
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 | |
with: | |
sdk: stable | |
- name: Fetch Dart dependencies | |
run: dart pub get | |
- name: Build site | |
run: dart run flutter_site build | |
- name: Translated (docs.flutter.cn) | |
run: bash tool/translator/build.sh | |
shell: bash | |
- name: Stage | |
if: ${{ | |
github.repository == 'cfug/flutter.cn' && | |
github.event.pull_request.user.login != 'dependabot[bot]' }} | |
uses: cfug/doc-site-preview-in-pr@main | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_FLUTTER_CN_DOCS_PROD }}' | |
expires: 14d | |
projectId: flutter-cn-docs-prod | |
showDetailedUrls: true | |
fileExtensionFilter: "md, html" | |
originalPath: "src/content/" | |
replacedPath: "/" | |