Skip to content

Commit

Permalink
chore(ci): bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryVasanth authored May 3, 2024
1 parent a4220e8 commit 15afd93
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
inputs:
random-choice:
type: choice
description: Whats your choice?
description: What is your choice?
options:
- Pick a Card
- Roll a Die
- 🃏 Pick a Card
- 🎲 Roll a Die

jobs:
run:
Expand All @@ -16,13 +16,13 @@ jobs:
steps:

- name: ⬇ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ⚙️ Executing
run: |
if [[ "${{ github.event.inputs.random-choice }}" == 'Pick a Card' ]]; then
if [[ "${{ github.event.inputs.random-choice }}" == '🃏 Pick a Card' ]]; then
./deck/µcard.sh
elif [[ "${{ github.event.inputs.random-choice }}" == 'Roll a Die' ]]; then
elif [[ "${{ github.event.inputs.random-choice }}" == '🎲 Roll a Die' ]]; then
./dice/µroll.sh
else
echo "Invalid option selected"
Expand Down

0 comments on commit 15afd93

Please sign in to comment.