File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 2525 id : release_tag
2626 run : |
2727 $tag = $Env:RELEASE.split(".")[0]
28- echo "tag=$tag" | Out-File -FilePath $Env:GITHUB_OUTPUT -Encoding utf8 -Append
28+ echo "tag=$tag" | Out-File -FilePath $Env:GITHUB_OUTPUT -Encoding utf8 -Append
29+ echo "3P_WEBRTC_BUILD_RELEASE_VERSION=$Env:RELEASE" | Out-File -FilePath .\\VERSIONS -Encoding utf8 -Append
2930 - name : Disk Cleanup
3031 run : |
3132 Get-PSDrive
6869 env :
6970 RELEASE : ${{ github.ref_name }}
7071 id : release_tag
71- run : echo "tag=${RELEASE%%.*}" >> "$GITHUB_OUTPUT"
72+ run : |
73+ echo "tag=${RELEASE%%.*}" >> "$GITHUB_OUTPUT"
74+ echo "tag=${RELEASE}" >> "VERSION"
7275 - run : ./build.${{ matrix.name }}.sh "${{ steps.release_tag.outputs.tag }}_release"
7376 - name : Upload Artifact
7477 uses : actions/upload-artifact@v1
@@ -110,7 +113,9 @@ jobs:
110113 env :
111114 RELEASE : ${{ github.ref_name }}
112115 id : release_tag
113- run : echo "tag=${RELEASE%%.*}" >> "$GITHUB_OUTPUT"
116+ run : |
117+ echo "tag=${RELEASE%%.*}" >> "$GITHUB_OUTPUT"
118+ echo "tag=${RELEASE}" >> "VERSION"
114119 - run : ./build.${{ matrix.name }}.sh "${{ steps.release_tag.outputs.tag }}_release"
115120 - name : Upload Artifact
116121 uses : actions/upload-artifact@v1
You can’t perform that action at this time.
0 commit comments