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

Update dir

Update dir #3

Workflow file for this run

name: CMake
on:
push:
pull_request:
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- 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 artifact
uses: actions/upload-artifact@v2
with:
name: MultiRename.exe
path: ${{github.workspace}}\build\MultiRename.exe