Skip to content

Commit a73c22f

Browse files
Merge branch 'dev' into ProgramIndexPATH
2 parents 4845e35 + 826a422 commit a73c22f

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

appveyor.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ init:
44
- ps: |
55
$version = new-object System.Version $env:APPVEYOR_BUILD_VERSION
66
$env:flowVersion = "{0}.{1}.{2}" -f $version.Major, $version.Minor, $version.Build
7+
if ($env:APPVEYOR_REPO_BRANCH -eq "dev")
8+
{
9+
$env:prereleaseTag = "{0}.{1}.{2}.{3}" -f $version.Major, $version.Minor, $version.Build, $version.Revision
10+
}
711
- sc config WSearch start= auto # Starts Windows Search service- Needed for running ExplorerTest
812
- net start WSearch
913

@@ -18,12 +22,6 @@ assembly_info:
1822
assembly_file_version: $(flowVersion)
1923
assembly_informational_version: $(flowVersion)
2024

21-
skip_branch_with_pr: true
22-
23-
skip_commits:
24-
files:
25-
- '*.md'
26-
2725
image: Visual Studio 2022
2826
platform: Any CPU
2927
configuration: Release
@@ -57,6 +55,17 @@ deploy:
5755
on:
5856
APPVEYOR_REPO_TAG: true
5957

58+
- provider: GitHub
59+
repository: Flow-Launcher/Prereleases
60+
release: v$(prereleaseTag)
61+
description: 'This is the early access build of our upcoming release. All changes contained here are reviewed, tested and stable to use.\n\nSee our [release](https://github.com/Flow-Launcher/Flow.Launcher/pulls?q=is%3Aopen+is%3Apr+label%3Arelease) Pull Request for details.\n\nFor latest production release visit [here](https://github.com/Flow-Launcher/Flow.Launcher/releases/latest)\n\nPlease report any bugs or issues over at the [main repository](https://github.com/Flow-Launcher/Flow.Launcher/issues)'
62+
auth_token:
63+
secure: ij4UeXUYQBDJxn2YRAAhUOjklOGVKDB87Hn5J8tKIzj13yatoI7sLM666QDQFEgv
64+
artifact: Squirrel Installer, Portable Version, Squirrel nupkg, Squirrel RELEASES
65+
force_update: true
66+
on:
67+
branch: dev
68+
6069
- provider: GitHub
6170
release: v$(flowVersion)
6271
auth_token:

0 commit comments

Comments
 (0)