-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
58 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
on: | ||
push: | ||
# Sequence of patterns matched against refs/tags | ||
tags: | ||
- 'release/v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
|
||
name: Create Release | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Configure CMake | ||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=RelWithDebInfo | ||
- name: Build and package | ||
run: cmake --build build --config RelWithDebInfo --target package | ||
- name: Upload ZIP as Artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: easy_debug_view-zip | ||
path: ${{github.workspace}}/build/easy_debug_view.zip | ||
|
||
release: | ||
name: Release | ||
runs-on: windows-latest | ||
needs: build | ||
steps: | ||
- name: Download ZIP Artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: easy_debug_view-zip | ||
path: . | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
draft: true | ||
files: easy_debug_view.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
# easy-debug-view | ||
Simple and fast debug output viewer for Windows. | ||
|
||
## Build | ||
### Configure and build using CMake | ||
```console | ||
cmake -S . -B build | ||
cmake --build build --config RelWithDebInfo --target ALL_BUILD | ||
``` | ||
### Configure, build and package using CMake | ||
cmake -S . -B build | ||
cmake --build build --config RelWithDebInfo --target package |