Skip to content

fix device data extraction and task manager app filter #141

fix device data extraction and task manager app filter

fix device data extraction and task manager app filter #141

Workflow file for this run

name: .NET 6.0 Desktop Build and Publish
on:
push:
tags:
- '*'
workflow_dispatch: # This allows you to trigger the workflow manually from the GitHub UI
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Restore dependencies
run: dotnet restore --runtime win-x64
- name: Build the solution
run: dotnet build --configuration Release --no-restore
- name: Publish the application
run: dotnet publish D:\a\ATA-GUI\ATA-GUI\ATA-GUI\ATA-GUI.csproj --configuration Release --runtime win-x64 --self-contained false /p:PublishSingleFile=true --output ./publish
- name: Zip the published output
run: Compress-Archive -Path ./publish/ATA-GUI.exe, ./LICENSE -DestinationPath ATA-GUI.zip
shell: pwsh
- name: Get Previous tag
id: previoustag
uses: "WyriHaximus/[email protected]"
- name: Create Release
uses: ncipollo/[email protected]
with:
generateReleaseNotes: true
artifacts: ATA-GUI.zip
name: ${{ steps.previoustag.outputs.tag }}
tag: ${{ steps.previoustag.outputs.tag }}
token: ${{ secrets.GITHUB_TOKEN }}