We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
full-release
1 parent a823c89 commit 583a296Copy full SHA for 583a296
1 file changed
actions/full-release/action.yml
@@ -7,6 +7,10 @@ inputs:
7
aws_assume_role:
8
description: 'The ARN of an AWS IAM role to assume. Used to auth with AWS to upload results to S3.'
9
required: true
10
+ prerelease:
11
+ description: 'Is this a prerelease. If so, then the latest tag will not be updated in npm. Defaults to `false`.'
12
+ required: false
13
+ default: 'false'
14
15
runs:
16
using: composite
@@ -32,8 +36,9 @@ runs:
32
36
with:
33
37
workspace_name: ${{ env.WORKSPACE_NAME }}
34
38
workspace_path: ${{ inputs.workspace_path }}
35
- prerelease: false
39
+ prerelease: ${{ inputs.prerelease }}
40
dry_run: false
- - uses: ./actions/publish-docs
41
+ - if: ${{ inputs.prerelease != 'true' }}
42
+ uses: ./actions/publish-docs
43
44
0 commit comments