Skip to content

Commit

Permalink
s/github.event/github.event_name
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz committed Nov 6, 2023
1 parent 6239f31 commit c0e95fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump-formula.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Extract version
id: extract-version
run: |
echo ${{ github.event }}
if [[ ${{ github.event }} == "workflow_dispatch" ]]; then
echo ${{ github.event_name }}
if [[ ${{ github.event_name }} == "workflow_dispatch" ]]; then
echo "tag-name=${{ inputs.tag-name }}" >> $GITHUB_OUTPUT
else
echo "tag-name=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit c0e95fa

Please sign in to comment.