File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 2121 test_ext_branch :
2222 required : false
2323 type : string
24+ secrets :
25+ github_token :
26+ required : false
2427 outputs :
2528 build-job-status :
2629 value : ${{ jobs.build-extension-artifact.outputs.build-status }}
2730
31+
2832env :
2933 ACTIONS_RUNNER_DEBUG : false
3034 CI_COMMIT_MESSAGE : CI Build Artifacts
@@ -84,15 +88,15 @@ jobs:
8488 if : github.ref_type == 'tag' || inputs.is_test == 'true'
8589 id : parsed-name
8690 env :
87- GH_TOKEN : ${{ github.token }}
91+ GH_TOKEN : ${{ secrets.github_token || github.token }}
8892 run : |
8993 yarn parse-tag-name ${{ inputs.tagged_release }} ${{ github.run_id }} "charts"
9094
9195 - name : Run build script
9296 shell : bash
9397 id : build_script
9498 env :
95- GH_TOKEN : ${{ github.token }}
99+ GH_TOKEN : ${{ secrets.github_token || github.token }}
96100 run : |
97101 publish="yarn publish-pkgs -s ${{ github.repository }} -b ${{ inputs.target_branch }}"
98102
You can’t perform that action at this time.
0 commit comments