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

Update file sorting and renaming logic #3

Update file sorting and renaming logic

Update file sorting and renaming logic #3

name: CMake on a single platform
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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: build
path: ${{github.workspace}}/build