Skip to content

Commit

Permalink
Add output param for Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
MinyazevR committed Dec 28, 2024
1 parent 34d7a40 commit adcfe5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/windows_build_with_installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ jobs:
run:
shell: msys2 {0}

outputs:
set-artifact: ${{ steps.set-artifact.outputs.set-artifact }}

steps:

- name: Setup msys2
Expand Down Expand Up @@ -194,7 +197,8 @@ jobs:
installer/reinstall*
- name: Set a flag when uploading an artifact
run: echo " set-artifact=true" >> "$GITHUB_OUTPUT"
id: set-artifact
run: echo "set-artifact=true" >> "$GITHUB_OUTPUT"

- name: Check errors
if: ${{ steps.tests.outcome == 'failure' }}
Expand Down

0 comments on commit adcfe5e

Please sign in to comment.