File tree Expand file tree Collapse file tree 3 files changed +8
-17
lines changed Expand file tree Collapse file tree 3 files changed +8
-17
lines changed Original file line number Diff line number Diff line change @@ -74,26 +74,17 @@ jobs:
7474 token : ${{ secrets.CODECOV_TOKEN }}
7575 verbose : true # optional (default = false)
7676 - name : Create destination folder
77- env :
78- GH_TOKEN : ${{ github.token }}
79- GITHUB_TOKEN : ${{ github.token }}
8077 if : ${{ success() && inputs.publishArtifact }}
81- run : mkdir -p ${{inputs.artifactlocation}}
78+ run : mkdir -p ${{ github.workspace }}${{ inputs.artifactlocation}}
8279 - name : Copy file outputjs into staging directory
83- env :
84- GH_TOKEN : ${{ github.token }}
85- GITHUB_TOKEN : ${{ github.token }}
8680 if : ${{ success() && inputs.publishArtifact }}
87- run : cp ${{ inputs.projectdirectory }}/dist/broadcast.js ${{inputs.artifactlocation}}
81+ run : cp ${{ inputs.projectdirectory }}/dist/broadcast.js ${{ github.workspace }}${{ inputs.artifactlocation}}
8882 - name : Upload ${{ inputs.componentName }} artifact
89- env :
90- GH_TOKEN : ${{ github.token }}
91- GITHUB_TOKEN : ${{ github.token }}
9283 if : ${{ success() && inputs.publishArtifact }}
9384 uses : actions/upload-artifact@v4
9485 with :
9586 name : ${{ inputs.componentName }}
96- path : ${{inputs.artifactlocation}}
87+ path : ${{ github.workspace }}${{ inputs.artifactlocation}}
9788
9889
9990
Original file line number Diff line number Diff line change 3737 publishArtifact : false
3838 testCommand : ' test:ci'
3939 publishCodeCov : true
40- artifactlocation : ' ${{ github.workspace }} /dist'
40+ artifactlocation : ' /dist'
4141 secrets :
4242 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
4343
4747 uses : ./.github/workflows/buildpcf.yml
4848 with :
4949 pcfdirectory : ' src/broadcast-pcf/appmodulepicker'
50- publishArtifact : true
50+ publishArtifact : false
5151 componentName : AppModulePicker
52- artifactlocation : ' ${{ github.workspace }} /dist'
52+ artifactlocation : ' /dist'
Original file line number Diff line number Diff line change 2525 publishArtifact : true
2626 testCommand : ' test:ci'
2727 publishCodeCov : false
28- artifactlocation : ' ${{ github.workspace }} /dist'
28+ artifactlocation : ' /dist'
2929 secrets :
3030 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
3131
3737 pcfdirectory : ' src/broadcast-pcf/appmodulepicker'
3838 publishArtifact : true
3939 componentName : AppModulePicker
40- artifactlocation : ' ${{ github.workspace }} /dist'
40+ artifactlocation : ' /dist'
4141 release :
4242 name : Create Release from tag
4343 needs : [ buildAppModulePickerPCF, buildBroadCastJs]
You can’t perform that action at this time.
0 commit comments