Skip to content

Update private vulnerability reporting guidance #22

Update private vulnerability reporting guidance

Update private vulnerability reporting guidance #22

Workflow file for this run

name: Build and validate
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- name: Check out source
uses: actions/checkout@v7
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v3
- name: Build portable beta
shell: pwsh
run: .\build\Build-Release.ps1
- name: Run source and portable checks
shell: pwsh
run: .\build\Test-Beta.ps1 -SkipInstallerChecks -SkipLiveDeviceChecks
- name: Upload portable build
uses: actions/upload-artifact@v7
with:
name: evoworks-control-portable-${{ github.sha }}
path: |
EvoworksControl-Beta.exe
EvoworksControl-Beta-portable.zip
if-no-files-found: error
retention-days: 14