Skip to content

Commit dacffbd

Browse files
Fix GitHub release task: add fail_on_unmatched_files parameter and correct file upload paths (#467)
* Fix GitHub release task: add fail_on_unmatched_files and fix file path references Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jasonleenaylor <2295227+jasonleenaylor@users.noreply.github.com>
1 parent 002f270 commit dacffbd

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/base-installer-cd.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ jobs:
248248
Write-Host "Uploaded online installer to s3://flex-updates/$onlineS3Key"
249249
250250
- name: Compress Build Artifacts
251+
id: compress_artifacts
251252
if: ${{ inputs.make_release == 'true' }}
252253
run: |
253254
[System.IO.Compression.ZipFile]::CreateFromDirectory(
@@ -275,9 +276,10 @@ jobs:
275276
name: "FieldWorks Base Build #${{ env.RELEASE_BASE_BUILD_NUMBER }}"
276277
draft: false
277278
prerelease: true
279+
fail_on_unmatched_files: true
278280
files: |
279-
${{ steps.prepare_paths.outputs.build_dir_zip }}
280-
${{ steps.prepare_paths.outputs.proc_runner_zip }}
281+
${{ steps.compress_artifacts.outputs.build_dir_zip }}
282+
${{ steps.compress_artifacts.outputs.proc_runner_zip }}
281283
282284
- name: Upload Build Logs
283285
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)