We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e6457 commit 70f5e01Copy full SHA for 70f5e01
extension/BuildPhpExtension/private/Add-Package.ps1
@@ -95,6 +95,7 @@ function Add-Package {
95
}
96
97
98
+ Add-Content "artifact=$artifact" -Path $env:GITHUB_OUTPUT -Encoding utf8
99
100
7z a -sdel "$artifact.zip" *
101
extension/action.yml
@@ -55,6 +55,7 @@ runs:
55
uses: actions/checkout@v4
56
57
- name: Build PHP
58
+ id: build
59
shell: pwsh
60
env:
61
CONFIGURE_ARGS: ${{inputs.args}}
@@ -73,8 +74,8 @@ runs:
73
74
-Arch ${{inputs.arch}} `
75
-Ts ${{inputs.ts}}
76
- - name: Upload artifacts
77
+ - name: Upload the build artifact
78
uses: actions/upload-artifact@v4
79
with:
- name: artifacts-${{inputs.php-version}}-${{inputs.arch}}-${{inputs.ts}}
80
+ name: ${{ steps.build.outputs.artifact }}
81
path: artifacts/*
0 commit comments