Skip to content

Commit ab8b4c8

Browse files
committed
updated deployment to include linux' install.sh
1 parent 4a8c6e6 commit ab8b4c8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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}}"

0 commit comments

Comments
 (0)