Skip to content

Commit

Permalink
Add github workflow that provides build when release
Browse files Browse the repository at this point in the history
  • Loading branch information
Notiooo committed Feb 19, 2024
1 parent 7d8025a commit e489b90
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build_on_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: C++ Build and Package

on:
release:
types: [published]
workflow_dispatch:

jobs:
build:
runs-on: windows-latest
env:
TAG_NAME: ${{ github.ref_name }}

steps:
- uses: actions/checkout@v3

- name: Build (Release)
run: |
cmake -S ${{github.workspace}}/MakeFarm -B ${{github.workspace}}/build-release -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build-release --config Release --target MakeFarmApp
- name: Package (Release)
run: |
Compress-Archive -Path "${{github.workspace}}/build-release/src/Release/*" -DestinationPath "${{github.workspace}}/build-release/src/release_windows_build_${{ env.TAG_NAME }}.zip"
- name: Build (Debug)
run: |
cmake -S ${{github.workspace}}/MakeFarm -B ${{github.workspace}}/build-debug -DCMAKE_BUILD_TYPE=Debug
cmake --build ${{github.workspace}}/build-debug --config Debug --target MakeFarmApp
- name: Package (Debug)
run: |
Compress-Archive -Path "${{github.workspace}}/build-debug/src/Debug/*" -DestinationPath "${{github.workspace}}/build-debug/src/debug_windows_build_${{ env.TAG_NAME }}.zip"
- name: List files before upload release assets
run: Get-ChildItem

- name: Upload Release Assets
uses: AButler/[email protected]
with:
files: "./build-release/src/release_windows_build_*.zip;./build-debug/src/debug_windows_build_*.zip"
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e489b90

Please sign in to comment.