Skip to content
This repository has been archived by the owner on Dec 22, 2024. It is now read-only.

Found another set of common hashes #2

Found another set of common hashes

Found another set of common hashes #2

name: Build Windows Executable
on:
push:
branches: [ root ]
pull_request:
branches: [ root ]
workflow_dispatch:
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Upload hellextractor Artifact
uses: actions/[email protected]
with:
name: hellextractor
path: ${{github.workspace}}/build/Release/Hellextractor.exe
if-no-files-found: error # Optional: 'warn', 'error', 'ignore'