From 092cdbd91730d6c75ae9ceeed64dd9d80d92b8f3 Mon Sep 17 00:00:00 2001 From: Danielle Adams Date: Wed, 6 Sep 2023 13:43:12 -0600 Subject: [PATCH] ARCH-1916 - Remove build step --- .github/workflows/build-and-review-pr.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-review-pr.yml b/.github/workflows/build-and-review-pr.yml index 330a68c..c64a040 100644 --- a/.github/workflows/build-and-review-pr.yml +++ b/.github/workflows/build-and-review-pr.yml @@ -57,6 +57,7 @@ jobs: # ** This value must match the same dirs-with-code argument specified in increment-version-on-merge.yml. dirs-with-code: 'src,.build-linux,.build-win' - # The npm script to run to build the action. This is typically 'npm run build' if the - # action needs to be compiled. For composite-run-steps actions this is typically empty. - build-command: 'npm run build' + # This action does contain a build step but it always results in changes to the dlls, whether or not there + # were actually code changes, so skip the build here. When PRs are created, we need to make sure the + # dlls have actually been updated. + build-command: ''