-
-
Notifications
You must be signed in to change notification settings - Fork 393
Add separate GitHub build action for dev + master #2986
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
7f887f5
add github action
taooceros 8a5b699
update vpk install
taooceros cb47632
remove unused argument
taooceros 9cd4e80
use nuget packages path and fix pwsh behavior
taooceros 0017971
revert nuget_packages enviromental variables
taooceros 01b4b27
revert dotnet pack
taooceros cb839a1
ignore System.Text.Encodings.Web.dll
taooceros a870e27
fix ignore list
taooceros d770e6d
try delete only the first level dll
taooceros 8e26a4c
delete only the first level dll
taooceros 2868c72
fix path issue
taooceros f26d563
use powershell and revert change in post_build.ps1
taooceros 935ac77
remove lock mode
taooceros a1b1d84
try nuget restore
taooceros 577ae34
Merge branch 'dev' into github-action
taooceros File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# This workflow will build a .NET project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | ||
|
||
name: Build | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- dev | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
env: | ||
FlowVersion: 1.19.5 | ||
NUGET_CERT_REVOCATION_MODE: offline | ||
BUILD_NUMBER: ${{ github.run_number }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set Flow.Launcher.csproj version | ||
id: update | ||
uses: vers-one/dotnet-project-version-updater@v1.5 | ||
with: | ||
file: | | ||
"**/SolutionAssemblyInfo.cs" | ||
version: ${{ env.FlowVersion }}.${{ env.BUILD_NUMBER }} | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 7.0.x | ||
# cache: true | ||
# cache-dependency-path: | | ||
# Flow.Launcher/packages.lock.json | ||
# Flow.Launcher.Core/packages.lock.json | ||
# Flow.Launcher.Infrastructure/packages.lock.json | ||
# Flow.Launcher.Plugin/packages.lock.json | ||
- name: Install vpk | ||
run: dotnet tool install -g vpk | ||
- name: Restore dependencies | ||
run: dotnet restore --locked-mode | ||
- name: Build | ||
run: dotnet build --no-restore -c Release | ||
- name: Initialize Service | ||
run: | | ||
sc config WSearch start= auto # Starts Windows Search service- Needed for running ExplorerTest | ||
net start WSearch | ||
- name: Test | ||
run: dotnet test --no-build --verbosity normal -c Release | ||
- name: Perform post_build tasks | ||
shell: pwsh | ||
run: .\Scripts\post_build.ps1 -flowversion "${env:FlowVersion}-build.${env:BUILD_NUMBER}" | ||
- name: Upload Plugin Nupkg | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Plugin nupkg | ||
path: | | ||
Output\Release\Flow.Launcher.Plugin.*.nupkg | ||
compression-level: 0 | ||
- name: Upload Setup | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Flow Installer | ||
path: | | ||
Output\Packages\Flow-Launcher-*.exe | ||
compression-level: 0 | ||
- name: Upload Portable Version | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Portable Version | ||
path: | | ||
Output\Packages\Flow-Launcher-Portable.zip | ||
compression-level: 0 | ||
- name: Upload Full Nupkg | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Full nupkg | ||
path: | | ||
Output\Packages\FlowLauncher-*-full.nupkg | ||
|
||
compression-level: 0 | ||
- name: Upload Release Information | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: RELEASES | ||
path: | | ||
Output\Packages\RELEASES | ||
compression-level: 0 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be hardcoded.