Skip to content

Commit

Permalink
change action use env expression syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceshi committed Nov 22, 2023
1 parent 172a115 commit 41c1aea
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,12 @@ jobs:
- uses: actions/upload-artifact@v3
with:
path: angle-x64-windows-static-$env:UCRTVersion.7z
path: angle-x64-windows-static-${{env.UCRTVersion}}.7z
env:
UCRTVersion: $env:UCRTVersion

- uses: actions/upload-artifact@v3
with:
path: av_libglesv2-$env:UCRTVersion.7z
path: av_libglesv2-${{env.UCRTVersion}}.7z
env:
UCRTVersion: $env:UCRTVersion

0 comments on commit 41c1aea

Please sign in to comment.