File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 60
60
shell : bash
61
61
run : echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
62
62
63
+ - name : Create msi installer
64
+ run : |
65
+ dotnet tool install --global wix
66
+ cargo install cargo-wix
67
+ cargo wix --output installer.msi
68
+ - name : Upload msi artifact
69
+ uses : actions/upload-release-asset@v1
70
+ env :
71
+ GITHUB_TOKEN : ${{ github.token }}
72
+ with :
73
+ upload_url : ${{ steps.create_release.outputs.upload_url }}
74
+ asset_path : ./installer.msi
75
+ asset_name : tmc-cli-rust-${{ steps.get_version.outputs.VERSION }}.msi
76
+ asset_content_type : application/octet-stream
77
+
63
78
- name : Deploy
64
79
run : |
65
80
$env:python_version=$(python -c 'import sys; print(\".\".join(map(str, sys.version_info[:3])))')
Original file line number Diff line number Diff line change 1
1
name : tmc-cli-rust
2
2
title : TestMyCode CLI
3
3
base : core20
4
- version : 1.1.2
4
+ version : 1.1.3
5
5
issues : https://github.com/rage/tmc-cli-rust/issues
6
6
source-code : https://github.com/rage/tmc-cli-rust.git
7
7
website : https://tmc.mooc.fi/
You can’t perform that action at this time.
0 commit comments