Skip to content

feat: filter by key/type #13

feat: filter by key/type

feat: filter by key/type #13

Workflow file for this run

name: Registry Finder Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.5'
- name: Set Go OS
run: set GOOS=windows
- name: Set Go Arch
run: set GOARCH=amd64
- name: Install go-winres
run: go install github.com/tc-hib/go-winres@latest
- name: Make go-winres
run: go-winres make .
- name: Build Executable
run: go build -a -o registry-finder-gui.exe -ldflags="-s -w -H windowsgui -extldflags '-O2'" .
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: registry-finder-gui
path: registry-finder-gui.exe