Skip to content

Commit d5673bb

Browse files
devversionzarend
authored andcommitted
build: cleanup preview dev-app github action workflow (#24582)
We can remove the `GITHUB_ENV` sourcing since we changed how RBE is configured: 26fc03e (cherry picked from commit f1ec0fc)
1 parent dfef173 commit d5673bb

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/build-dev-app.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,10 @@ jobs:
2727
env:
2828
GCP_DECRYPT_TOKEN: angular
2929

30-
# Build the web package. Note that we also need to make the Github environment
31-
# variables available so that the RBE is configured. Note: We run Bazel from a
32-
# low-resource Github action container, so we manually need to instruct Bazel to run
33-
# more actions concurrently as by default this is computed based on the host resources.
34-
- name: Building dev-app
35-
run: |
36-
source ${GITHUB_ENV}
37-
bazel build //src/dev-app:web_package --symlink_prefix=dist/ --jobs=32
30+
# Build the web package. Note: We run Bazel from a low-resource Github action container,
31+
# so we manually need to instruct Bazel to run more actions concurrently as by default
32+
# the number of concurrent actions is determined based on the host resources.
33+
- run: bazel build //src/dev-app:web_package --symlink_prefix=dist/ --jobs=32
3834

3935
# Prepare the workflow artifact that is available for the deploy workflow. We store the pull
4036
# request number and SHA in a file that can be read by the deploy workflow. This is necessary

0 commit comments

Comments
 (0)