Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
44 lines (35 loc) · 1.19 KB

File metadata and controls

44 lines (35 loc) · 1.19 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
on:
workflow_dispatch:
inputs:
version:
description: '版本号'
default: '0.0.0'
required: true
type: string
jobs:
pack-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'windows-latest' ]
steps:
- uses: actions/checkout@v1
- name: Download Winpython
uses: carlosperate/download-file-action@v1.0.3
with:
file-url: https://github.com/winpython/winpython/releases/download/4.3.20210620/Winpython64-3.8.10.0dot.exe
file-name: Winpython64-3.8.10.0dot.exe
location: ${{ github.workspace }}
- name: Extract Winpython
run: 7z x -o"${{ github.workspace }}" "${{ github.workspace }}/Winpython64-3.8.10.0dot.exe"
- name: Install python packages
run: .\build.bat
- name: remove Winpython installer
run: del "${{ github.workspace }}/Winpython64-3.8.10.0dot.exe"
- name: pack
run: 7z a .\diffsinger-server.zip .\*
- name: upload
uses: actions/upload-artifact@v1.0.0
with:
name: diffsinger-server-cpu-${{ inputs.version }}.zip
path: ${{ github.workspace }}\diffsinger-server.zip
Morty Proxy This is a proxified and sanitized view of the page, visit original site.