Skip to content

Commit

Permalink
Fix capturing taggers name
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronH88 committed Nov 22, 2023
1 parent e998998 commit b83b4d7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ on:
required: true
default: 'no'
name:
description: 'Name of the person who will create a tag / draft release in commas e.g. "John Doe".'
description: 'Name of the person in single quotes who will create a tag / draft release.'
required: true
default: ''
type: string
email:
description: 'Email of the person who will create a tag / draft release.'
required: true
Expand Down Expand Up @@ -84,10 +85,10 @@ jobs:
- name: Create draft release
run: |
ansible-playbook tools/ansible/stage.yml \
-e version=${{ github.event.inputs.version }} \
-e version="${{ github.event.inputs.version }}" \
-e repo=${{ env.OWNER }}/receptor \
-e github_token=${{ secrets.GITHUB_TOKEN }} \
-e target_commitish=${{ github.event.inputs.ref }} \
-e target_commitish="${{ github.event.inputs.ref }}" \
-e tagger_name="${{ github.event.inputs.name }}" \
-e tagger_email="${{ github.event.inputs.email }}" \
-e time="${{ steps.current-time.outputs.time }}" \
Expand Down

0 comments on commit b83b4d7

Please sign in to comment.