File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -90,11 +90,16 @@ jobs:
9090 git push origin "v${{inputs.version}}"
9191 env :
9292 GH_TOKEN : ${{secrets.GITHUB_TOKEN}}
93- - name : Prepare Installation Scripts
93+ - name : Prepare Installation Script (Windows)
9494 run : |
9595 mkdir -p installers
9696 cp ${{github.workspace}}/packaging/windows/script/install.ps1 installers/install.ps1
9797 sed -i 's/__VERSION__/v${{inputs.version}}/g' installers/install.ps1
98+ - name : Prepare Installation Script (Windows)
99+ run : |
100+ cp ${{github.workspace}}/packaging/linux/script/install.sh installers/install.sh
101+ sed -i 's/__VERSION__/v${{inputs.version}}/g' installers/install.sh
102+ chmod +x installers/install.sh
98103 - name : Create Release
99104 run : >
100105 gh release create "v${{inputs.version}}"
You can’t perform that action at this time.
0 commit comments