Skip to content

Commit

Permalink
Retain normal DLL name and add License.txt to Artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
JMoodyFWD committed Feb 20, 2024
1 parent 75d146d commit a950bd6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/compile-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,15 @@ jobs:
echo $phalconArtifactName >> $env:GITHUB_ENV
$from = $dir + '\php_phalcon.dll'
$to = $dir + '\' + $artifactName + "\php_phalcon.dll"
$to = '.\php_phalcon.dll'
Copy-Item $from -Destination $to
$phalconArtifact = "ARTIFACT=" + $to
$phalconArtifact = "ARTIFACT=" + '.\php_phalcon.dll'
echo $phalconArtifact >> $env:GITHUB_ENV
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{env.ARTIFACT_NAME}}
path: ${{env.ARTIFACT}}
path: |
${{env.ARTIFACT}}
LICENSE.txt

0 comments on commit a950bd6

Please sign in to comment.