diff options
author | Li Jin <dragon-fly@qq.com> | 2021-07-30 15:56:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 15:56:01 +0800 |
commit | fc63c0e73d62daad72e770f360bce968f102e6da (patch) | |
tree | d8197ea16ee9dbdaf903f1e8a91e4413fa4269e8 | |
parent | 2b2ec9550d63619b643b6b2f4609a3dd76861e1c (diff) | |
download | yuescript-fc63c0e73d62daad72e770f360bce968f102e6da.tar.gz yuescript-fc63c0e73d62daad72e770f360bce968f102e6da.tar.bz2 yuescript-fc63c0e73d62daad72e770f360bce968f102e6da.zip |
Update windows.yml
-rw-r--r-- | .github/workflows/windows.yml | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 03cec28..0131c43 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml | |||
@@ -1,3 +1,17 @@ | |||
1 | P2菜单:一级菜单需要申请,二三级菜单不需要申请 | ||
2 | 版本上线,项目号 | ||
3 | 数据入湖入仓 | ||
4 | 数据展示:cognos报表上线,智数洞察,本地数据查询 | ||
5 | |||
6 | 一级菜单 | ||
7 | 数据录入 | ||
8 | |||
9 | 业务数据 -> 数据入湖 -> 任务下发 -> 任务分配录入 -> 数据回传入湖 -> 成效跟踪 | ||
10 | |||
11 | [](https://discord.gg/cRJ2VAm2NV) | ||
12 | |||
13 | bin\windows\Release\yue.exe | ||
14 | |||
1 | name: Windows | 15 | name: Windows |
2 | 16 | ||
3 | on: | 17 | on: |
@@ -15,5 +29,15 @@ jobs: | |||
15 | - name: Setup msbuild | 29 | - name: Setup msbuild |
16 | uses: microsoft/setup-msbuild@v1 | 30 | uses: microsoft/setup-msbuild@v1 |
17 | - name: Windows build | 31 | - name: Windows build |
18 | run: msbuild Yuescript.sln -p:Configuration=debug | 32 | run: msbuild Yuescript.sln /p:Configuration=release /p:Platform=x86 |
19 | 33 | - name: pack | |
34 | if: startsWith(github.ref, 'refs/tags/') | ||
35 | run: (cd bin\windows\Release && 7z a yue-windows-x86.7z yue.exe) | ||
36 | - name: release | ||
37 | uses: softprops/action-gh-release@v1 | ||
38 | if: startsWith(github.ref, 'refs/tags/') | ||
39 | with: | ||
40 | files: | | ||
41 | ./yue-windows-x86.7z | ||
42 | env: | ||
43 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||