aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/action.yml
diff options
context:
space:
mode:
Diffstat (limited to 'action.yml')
-rw-r--r--action.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/action.yml b/action.yml
index d92d72e..2fc99c9 100644
--- a/action.yml
+++ b/action.yml
@@ -179,10 +179,10 @@ runs:
$gxx = $prefix + '-g++'
$windres = $prefix = '-windres'
- echo "::set-output name=prefix::$prefix"
- echo "::set-output name=gcc::$gcc"
- echo "::set-output name=gxx::$gxx"
- echo "::set-output name=windres::$windres"
+ echo "prefix=$prefix" >> $env:GITHUB_OUTPUT
+ echo "gcc=$gcc" >> $env:GITHUB_OUTPUT
+ echo "gxx=$gxx" >> $env:GITHUB_OUTPUT
+ echo "windres=$windres" >> $env:GITHUB_OUTPUT
shell: pwsh
- run: |