Skip to content

Commit c81d139

Browse files
authored
v4.2.1
2 parents 78fdb58 + c64e054 commit c81d139

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/NightlyRelease.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,16 @@ on:
8484
type: string
8585
required: false
8686
default: '__pyTooling_upload_artifact__.tar'
87+
can-fail:
88+
type: boolean
89+
required: false
90+
default: false
8791

8892
jobs:
8993
Release:
9094
name: 📝 Update 'Nightly Page' on GitHub
9195
runs-on: ${{ inputs.ubuntu_image }}
96+
continue-on-error: ${{ inputs.can-fail }}
9297
permissions:
9398
contents: write
9499
actions: write
@@ -254,7 +259,7 @@ jobs:
254259
# A dictionary to check for duplicate asset files in release
255260
declare -A assetFilenames
256261
while IFS=$'\r\n' read -r assetLine; do
257-
if [[ "${assetLine}" == "" ]]; then
262+
if [[ "${assetLine}" == "" || "${assetLine:0:1}" == "#" ]]; then
258263
continue
259264
fi
260265

.github/workflows/_Checking_Nightly.yml

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
actions: write
5252
# attestations: write
5353
with:
54+
can-fail: true
5455
prerelease: true
5556
replacements: |
5657
version=4.2.0
@@ -88,6 +89,7 @@ jobs:
8889
actions: write
8990
# attestations: write
9091
with:
92+
can-fail: true
9193
replacements: |
9294
version=4.2.0
9395
tool=myTool
@@ -105,6 +107,7 @@ jobs:
105107
inventory-version: 4.2.5
106108
inventory-categories: "kind1,kind2"
107109
assets: |
110+
# artifact: file: labels: asset title
108111
document: document1.txt: doc,html: Documentation
109112
document: build.log: build,log: Logfile - %tool% - %tool%
110113
other: document1.txt: build,SBOM:SBOM - %version%

0 commit comments

Comments
 (0)