File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 66 description : Skip package release and publish documentation only
77 default : false
88 type : boolean
9+ skip_docs :
10+ description : Skip publishing the documentation
11+ default : false
12+ type : boolean
913 dry_run :
1014 description : Run package release in "dry run" mode (does not publish either)
1115 default : false
5660 name : Publish documentation from "${{ github.ref_name }}" branch to ${{ inputs.docs_env }}
5761 runs-on : ubuntu-latest
5862 # skip during dry runs, publish to production only from master or branches with names starting with "release", publish to staging from anywhere
59- if : ${{ !inputs.dry_run && (((github.ref_name == 'master' || startsWith(github.ref_name, 'release')) && inputs.docs_env == 'production') || inputs.docs_env == 'staging') }}
63+ if : ${{ !inputs.dry_run && !inputs.skip_docs && (((github.ref_name == 'master' || startsWith(github.ref_name, 'release')) && inputs.docs_env == 'production') || inputs.docs_env == 'staging') }}
6064 outputs :
6165 target-version : $${{ steps.target-version.outputs }}
6266 steps :
You can’t perform that action at this time.
0 commit comments