Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,17 @@ jobs:
- name: Fetch Dart dependencies
run: dart pub get
- name: Install firebase-tools
run: curl -sL https://firebase.tools | bash
# Pinned because the hosting emulator fails to
# start with firebase-tools 15.31.0.
# Once https://github.com/firebase/firebase-tools/issues/11168 is fixed,
# unpin or consider an automatic rolling process.
env:
FIREBASE_TOOLS_VERSION: 15.30.2
run: |
sudo curl -sSfLo /usr/local/bin/firebase \
"https://firebase.tools/bin/linux/v${FIREBASE_TOOLS_VERSION}"
sudo chmod +rx /usr/local/bin/firebase
firebase --version
- name: Build site
run: dart run dash_site --site=docs build
- name: Check for broken Markdown link references
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/www.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,17 @@ jobs:
- name: Fetch Dart dependencies
run: dart pub get
- name: Install firebase-tools
run: curl -sL https://firebase.tools | bash
# Pinned because the hosting emulator fails to
# start with firebase-tools 15.31.0.
# Once https://github.com/firebase/firebase-tools/issues/11168 is fixed,
# unpin or consider an automatic rolling process.
env:
FIREBASE_TOOLS_VERSION: 15.30.2
run: |
sudo curl -sSfLo /usr/local/bin/firebase \
"https://firebase.tools/bin/linux/v${FIREBASE_TOOLS_VERSION}"
sudo chmod +rx /usr/local/bin/firebase
firebase --version
- name: Build site
run: dart run dash_site --site=www build
- name: Check for broken Markdown link references
Expand Down
Loading