aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2021-07-30 15:56:01 +0800
committerGitHub <noreply@github.com>2021-07-30 15:56:01 +0800
commitfc63c0e73d62daad72e770f360bce968f102e6da (patch)
treed8197ea16ee9dbdaf903f1e8a91e4413fa4269e8
parent2b2ec9550d63619b643b6b2f4609a3dd76861e1c (diff)
downloadyuescript-fc63c0e73d62daad72e770f360bce968f102e6da.tar.gz
yuescript-fc63c0e73d62daad72e770f360bce968f102e6da.tar.bz2
yuescript-fc63c0e73d62daad72e770f360bce968f102e6da.zip
Update windows.yml
-rw-r--r--.github/workflows/windows.yml28
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 @@
1P2菜单:一级菜单需要申请,二三级菜单不需要申请
2版本上线,项目号
3数据入湖入仓
4数据展示:cognos报表上线,智数洞察,本地数据查询
5
6一级菜单
7数据录入
8
9业务数据 -> 数据入湖 -> 任务下发 -> 任务分配录入 -> 数据回传入湖 -> 成效跟踪
10
11[![Discord](https://discord.com/api/guilds/844031511208001577/widget.svg)](https://discord.gg/cRJ2VAm2NV)
12
13bin\windows\Release\yue.exe
14
1name: Windows 15name: Windows
2 16
3on: 17on:
@@ -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 }}