File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 84
84
type : string
85
85
required : false
86
86
default : ' __pyTooling_upload_artifact__.tar'
87
+ can-fail :
88
+ type : boolean
89
+ required : false
90
+ default : false
87
91
88
92
jobs :
89
93
Release :
90
94
name : 📝 Update 'Nightly Page' on GitHub
91
95
runs-on : ${{ inputs.ubuntu_image }}
96
+ continue-on-error : ${{ inputs.can-fail }}
92
97
permissions :
93
98
contents : write
94
99
actions : write
@@ -254,7 +259,7 @@ jobs:
254
259
# A dictionary to check for duplicate asset files in release
255
260
declare -A assetFilenames
256
261
while IFS=$'\r\n' read -r assetLine; do
257
- if [[ "${assetLine}" == "" ]]; then
262
+ if [[ "${assetLine}" == "" || "${assetLine:0:1}" == "#" ]]; then
258
263
continue
259
264
fi
260
265
Original file line number Diff line number Diff line change 51
51
actions : write
52
52
# attestations: write
53
53
with :
54
+ can-fail : true
54
55
prerelease : true
55
56
replacements : |
56
57
version=4.2.0
88
89
actions : write
89
90
# attestations: write
90
91
with :
92
+ can-fail : true
91
93
replacements : |
92
94
version=4.2.0
93
95
tool=myTool
@@ -105,6 +107,7 @@ jobs:
105
107
inventory-version : 4.2.5
106
108
inventory-categories : " kind1,kind2"
107
109
assets : |
110
+ # artifact: file: labels: asset title
108
111
document: document1.txt: doc,html: Documentation
109
112
document: build.log: build,log: Logfile - %tool% - %tool%
110
113
other: document1.txt: build,SBOM:SBOM - %version%
You can’t perform that action at this time.
0 commit comments