Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build-release-alpine-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
NodeVersion:
required: true
description: 'Node.js version to build (ex: v12.22.7, v16.12.0)'
DryRun:
description: 'DryRun will only build/test alpine node.js'
type: boolean
default: false
workflow_call:
Comment on lines +11 to 15

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is expected.

inputs:
NodeVersion:
Expand Down Expand Up @@ -90,6 +94,7 @@ jobs:
release:
name: Create release for node.js ${{needs.prebuild.outputs.NodeVersion}}
needs: [prebuild, test]
if: inputs['DryRun'] != true
runs-on: ubuntu-latest
steps:
- name: Download alpine node.js
Expand Down
Loading