Skip to content

Commit b30fd1a

Browse files
Try adding ext ID after workflow run
Co-authored-by: Ona <no-reply@ona.com>
1 parent f048313 commit b30fd1a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-extension.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
default: false
2323
jobs:
2424
download_release:
25-
name: Download latest release
25+
name: Download latest release (${{ fromJson(inputs.extension).id }})
2626
runs-on: ubuntu-latest
2727
permissions:
2828
contents: read
@@ -51,7 +51,7 @@ jobs:
5151
const script = require('./scripts/download-extension.js');
5252
await script();
5353
build_extension:
54-
name: Build Extension
54+
name: Build Extension (${{ fromJson(inputs.extension).id }})
5555
runs-on: ubuntu-latest
5656
needs: download_release
5757
permissions:
@@ -105,7 +105,7 @@ jobs:
105105
outputs:
106106
extensionFiles: ${{ steps.build_extension.outputs.extensionFiles }}
107107
publish_extension:
108-
name: Publish Extension
108+
name: Publish Extension (${{ fromJson(inputs.extension).id }})
109109
runs-on: ubuntu-latest
110110
if: ${{ inputs.skipPublish != 'true' }}
111111
needs: build_extension

0 commit comments

Comments
 (0)