Skip to content

Commit

Permalink
Fix run-name in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aldahick committed May 25, 2024
1 parent ce2a524 commit 911e154
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/core.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Core
run-name: ${{ github.ref_type == 'tag' && 'Publish' || 'Build' }} ${{ github.ref_name || 'core' }}
run-name: ${{ github.ref_type == 'tag' && 'Publish' || 'Build' }} ${{ github.ref_type == 'tag' && github.ref_name || 'core' }}
on:
push:
branches: '*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/react-utils.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: React Utils
run-name: ${{ github.ref_type == 'tag' && 'Publish' || 'Build' }} ${{ github.ref_name || 'react-utils' }}
run-name: ${{ github.ref_type == 'tag' && 'Publish' || 'Build' }} ${{ github.ref_type == 'tag' && github.ref_name || 'react-utils' }}
on:
push:
branches: '*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/utils.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Utils
run-name: ${{ github.ref_type == 'tag' && 'Publish' || 'Build' }} ${{ github.ref_name || 'utils' }}
run-name: ${{ github.ref_type == 'tag' && 'Publish' || 'Build' }} ${{ github.ref_type == 'tag' && github.ref_name || 'utils' }}
on:
push:
branches: '*'
Expand Down

0 comments on commit 911e154

Please sign in to comment.