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:
74
74
token : ${{ secrets.CODECOV_TOKEN }}
75
75
verbose : true # optional (default = false)
76
76
- name : Create destination folder
77
- env :
78
- GH_TOKEN : ${{ github.token }}
79
- GITHUB_TOKEN : ${{ github.token }}
80
77
if : ${{ success() && inputs.publishArtifact }}
81
- run : mkdir -p ${{inputs.artifactlocation}}
78
+ run : mkdir -p ${{ github.workspace }}${{ inputs.artifactlocation}}
82
79
- name : Copy file outputjs into staging directory
83
- env :
84
- GH_TOKEN : ${{ github.token }}
85
- GITHUB_TOKEN : ${{ github.token }}
86
80
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}}
88
82
- name : Upload ${{ inputs.componentName }} artifact
89
- env :
90
- GH_TOKEN : ${{ github.token }}
91
- GITHUB_TOKEN : ${{ github.token }}
92
83
if : ${{ success() && inputs.publishArtifact }}
93
84
uses : actions/upload-artifact@v4
94
85
with :
95
86
name : ${{ inputs.componentName }}
96
- path : ${{inputs.artifactlocation}}
87
+ path : ${{ github.workspace }}${{ inputs.artifactlocation}}
97
88
98
89
99
90
Original file line number Diff line number Diff line change 37
37
publishArtifact : false
38
38
testCommand : ' test:ci'
39
39
publishCodeCov : true
40
- artifactlocation : ' ${{ github.workspace }} /dist'
40
+ artifactlocation : ' /dist'
41
41
secrets :
42
42
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
43
43
47
47
uses : ./.github/workflows/buildpcf.yml
48
48
with :
49
49
pcfdirectory : ' src/broadcast-pcf/appmodulepicker'
50
- publishArtifact : true
50
+ publishArtifact : false
51
51
componentName : AppModulePicker
52
- artifactlocation : ' ${{ github.workspace }} /dist'
52
+ artifactlocation : ' /dist'
Original file line number Diff line number Diff line change 25
25
publishArtifact : true
26
26
testCommand : ' test:ci'
27
27
publishCodeCov : false
28
- artifactlocation : ' ${{ github.workspace }} /dist'
28
+ artifactlocation : ' /dist'
29
29
secrets :
30
30
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
31
31
37
37
pcfdirectory : ' src/broadcast-pcf/appmodulepicker'
38
38
publishArtifact : true
39
39
componentName : AppModulePicker
40
- artifactlocation : ' ${{ github.workspace }} /dist'
40
+ artifactlocation : ' /dist'
41
41
release :
42
42
name : Create Release from tag
43
43
needs : [ buildAppModulePickerPCF, buildBroadCastJs]
You can’t perform that action at this time.
0 commit comments