Skip to content

Commit

Permalink
Fix build workflow runs names (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
heatray authored Nov 20, 2023
1 parent cd8177e commit 09ac8b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/4testing-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
### This workflow setup instance then build and push images ###
name: 4testing multiarch-build
run-name: >-
Build #${{ inputs.build }} [
${{ inputs.amd64 && 'AMD64' || '-' }}
${{ inputs.arm64 && 'ARM64' || '-' }}
] [
${{ inputs.community && 'CE' || '-' }}
${{ inputs.developer && 'DE' || '-' }}
${{ inputs.enterprise && 'EE' || '-' }}
]
on:
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/stable-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### This workflow setup instance then build and push images ###
name: Multi-arch build stable
run-name: ${{ inputs.tag }} (${{ inputs.release_number }})

on:
workflow_dispatch:
Expand Down

0 comments on commit 09ac8b5

Please sign in to comment.