Skip to content

[sync] 2024/01/01 #1622

[sync] 2024/01/01

[sync] 2024/01/01 #1622

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
# Declare default permissions as read only.
permissions: read-all
env:
NODE_ENV: production
NODE_VERSION: 20
jobs:
test:
name: Check excerpts and run tests
runs-on: ubuntu-latest
if: github.repository == 'cfug/flutter.cn'
strategy:
fail-fast: false
matrix:
include:
- name: "Beta channel"
branch: beta
experimental: true
- name: "Stable channel"
branch: stable
experimental: false
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
submodules: recursive
- name: Move docs
run: make move-docs
- name: Test
env:
FLUTTER_BUILD_BRANCH: ${{ matrix.branch }}
run: make test
continue-on-error: ${{ matrix.experimental }}
linkcheck:
name: Build site and check links
runs-on: ubuntu-latest
if: ${{ github.ref != 'refs/heads/main' }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
submodules: recursive
- name: Build site and check links
run: make build BUILD_CONFIGS=_config.yml,_config_stage.yml
# - name: Install Node for Firebase install
# uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
# with:
# node-version: ${{ env.NODE_VERSION }}
# - name: Install Firebase CLI
# run: npm install -g [email protected]
- uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
with:
sdk: stable
- run: tool/check-links.sh
deploy:
name: Deploy to production
needs: [test, linkcheck]
runs-on: ubuntu-latest
if: |
github.event_name == 'push'
&& github.ref == 'refs/heads/main'
&& github.repository == 'cfug/flutter.cn'
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
submodules: recursive
- name: Build site and check links
run: make build
# - name: Install Node for Firebase install
# uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
# with:
# node-version: ${{ env.NODE_VERSION }}
# - name: Install Firebase CLI
# run: npm install -g [email protected]
# - uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
# with:
# sdk: stable
# - run: tool/check-links.sh
# - name: Deploy to Firebase hosting
# run: make deploy # TODO(drewroengoogle) Run deploy on Cloud Build.
- name: Deploy CN
run: make deploy
env:
DEPLOY_TOKEN: ${{ secrets.CHENGLU_DEPLOY_KEY }}