From 7b21aad43770f2e5df59040628ceb96337ff50e7 Mon Sep 17 00:00:00 2001 From: Nat Moore Date: Fri, 14 Oct 2022 13:45:53 -0500 Subject: [PATCH] add manual run; add build type to GH actions --- .github/workflows/tarball.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index 6cd9abc6..b983d6f8 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -3,13 +3,17 @@ name: dvmhost-build-tarball # Controls when the workflow will run on: # Allows you to run this workflow manually from the Actions tab - #workflow_dispatch: + workflow_dispatch: #run on push/PR push: branches: [ master ] pull_request: branches: [ master ] +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build"