We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ad36cc commit d76db77Copy full SHA for d76db77
1 file changed
.github/workflows/dotnet-lib-release.yml
@@ -35,6 +35,11 @@ on:
35
required: true
36
description: The version of Deno to use. The deno platform is used in all of the composite actions used in this workflow.
37
type: string
38
+ build-project:
39
+ required: false
40
+ description: If true, builds the project to ensure it compiles before performing the release.
41
+ default: true
42
+ type: boolean
43
enable-deno-cache:
44
required: false
45
description: If true, enables caching of the Deno modules.
@@ -232,6 +237,7 @@ jobs:
232
237
233
238
build_project:
234
239
name: Build Main Project
240
+ if: inputs.build-project == true
235
241
runs-on: "${{ inputs.runs-on }}"
236
242
steps:
243
- uses: actions/checkout@v5
0 commit comments