-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (54 loc) · 1.62 KB
/
release-windows.yml
File metadata and controls
57 lines (54 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Release Build for Windows
on:
workflow_dispatch:
inputs:
version-win:
description: "Version(semver)"
required: true
default: "X.X"
jobs:
# WINDOWS BUILD
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: "3.10"
architecture: "x64"
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Run cx_freeze
run: |
python setup.py bdist_msi
- uses: actions/upload-artifact@v2
with:
name: TimerX.msi
path: dist/TimerX-win64.msi
#RELEASE
- name: create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.event.inputs.version-win }}
release_name: "Release ${{ github.event.inputs.version-win }}"
overwrite: true
body: |
Release ${{ github.event.inputs.version-win }} (Add your content here and then publish this.)
draft: true
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{steps.create_release.outputs.upload_url}}
asset_path: dist/TimerX-win64.msi
asset_name: TimerX-win64.msi
asset_content_type: application/zip