mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-24 11:56:55 +00:00
1. update for auto publish
2. close button no need.
This commit is contained in:
parent
f2ae40b82e
commit
b38acdb8ba
2 changed files with 26 additions and 6 deletions
29
appveyor.yml
29
appveyor.yml
|
@ -1,10 +1,6 @@
|
|||
branches:
|
||||
only:
|
||||
- master
|
||||
environment:
|
||||
STATIC_SITE_REPO: https://github.com/JaredDC/v2rayN
|
||||
GIT_USER_EMAIL: jared.dcx@gmail.com
|
||||
GIT_USER_NAME: JaredDC
|
||||
image: Visual Studio 2019
|
||||
configuration: Release
|
||||
test: off
|
||||
|
@ -21,7 +17,9 @@ build:
|
|||
|
||||
after_build:
|
||||
- cmd:
|
||||
dir
|
||||
git describe --always --tags >OUTPUTFILE.TXT
|
||||
|
||||
set /P GIT_TAG=<OUTPUTFILE.TXT
|
||||
|
||||
7z x v2rayN-Core-bin\v2ray-windows.zip -ov2rayN\bin\Release
|
||||
|
||||
|
@ -29,9 +27,30 @@ after_build:
|
|||
|
||||
copy v2rayN-Core-bin\geosite.dat v2rayN\bin\Release /y
|
||||
|
||||
cd v2rayN\bin\Release
|
||||
|
||||
7z a v2rayN.Protable.zip .
|
||||
|
||||
move v2rayN.Protable.zip ..\..\..\v2rayN.Protable-%GIT_TAG%.zip
|
||||
|
||||
artifacts:
|
||||
- path: v2rayN\v2rayN\bin\Release
|
||||
name: v2rayN.Protable
|
||||
-
|
||||
- path: v2rayN\v2rayN.Protable-%GIT_TAG%.zip
|
||||
name: v2rayN.Protable-%GIT_TAG%
|
||||
|
||||
on_success:
|
||||
- echo succeed
|
||||
|
||||
deploy:
|
||||
release: v2rayN %GIT_TAG%
|
||||
description: "Need to add."
|
||||
provider: GitHub
|
||||
auth_token:
|
||||
secure: jjIUlINV2I/vxMzoH/jX11I6/rwEo237ELLgm37s3GdLQV3XkNbtVI/BVXjU4xSD
|
||||
artifact: v2rayN.Protable, v2rayN.Protable-%GIT_TAG%
|
||||
draft: true
|
||||
prerelease: false
|
||||
on:
|
||||
APPVEYOR_REPO_TAG: true # deploy on tag push only
|
1
v2rayN/v2rayN/Forms/MainForm.Designer.cs
generated
1
v2rayN/v2rayN/Forms/MainForm.Designer.cs
generated
|
@ -902,6 +902,7 @@
|
|||
resources.ApplyResources(this.tsbClose, "tsbClose");
|
||||
this.tsbClose.Name = "tsbClose";
|
||||
this.tsbClose.Click += new System.EventHandler(this.tsbClose_Click);
|
||||
this.tsbClose.Visible = false;
|
||||
//
|
||||
// MainForm
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue