Skip to content

Commit 281a6c5

Browse files
authoredAug 16, 2023
Update build to use stable (#5119)
I forgot to revert setting the `Makefile` to use `beta` and a new beta release came out since the last update, breaking the build.
1 parent 01878ee commit 281a6c5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- run: npm install -g firebase-tools@12.4.0
102102
- uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
103103
with:
104-
sdk: beta
104+
sdk: stable
105105
- run: tool/check-links.sh
106106
- name: Stage site on Firebase
107107
if: ${{

‎Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ RUN set -eu; \
3939
DART_SHA256="fd4fcc05f1d1c82fd618b83c7d877968460c5bd425774d89add438be12a20795"; \
4040
SDK_ARCH="arm64";; \
4141
amd64_beta) \
42-
DART_SHA256="7ce5c1560b1d8ea5ee0e6d44f1c3e7b804ddc5377b38d72fe4d43009a6c67e84"; \
42+
DART_SHA256="914791d2402bb641a30678ae089d1ce817a7f4722e148220e1aa00ab32b2cf85"; \
4343
SDK_ARCH="x64";; \
4444
arm64_beta) \
45-
DART_SHA256="fd4fcc05f1d1c82fd618b83c7d877968460c5bd425774d89add438be12a20795"; \
45+
DART_SHA256="8bec6e02c2fcb8c27c5a0e270072bd24dc594178b5245b19edb3391d58810c1e"; \
4646
SDK_ARCH="arm64";; \
4747
amd64_dev) \
4848
DART_SHA256="7d56e46c81b06d35d52070f25bd7f5845659ac9a0e9fd679c8b1a31da0fc284e"; \

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BUILD_CONFIGS ?= _config.yml
1515
BUILD_NAME ?= dart_dev_build
1616
BUILD_TAG ?= dart-dev
1717
BUILD_TARGET ?= build
18-
DART_CHANNEL ?= beta
18+
DART_CHANNEL ?= stable
1919
DART_VERSION ?= latest
2020
FIREBASE_PROJECT ?= default
2121
FIREBASE_CHANNEL ?= dart

0 commit comments

Comments
 (0)
Please sign in to comment.