Skip to content

Commit

Permalink
another test on action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
asheliahut committed Nov 1, 2024
1 parent 713743b commit 43ac2ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ inputs:
install-dir:
description: 'Directory where Brioche should be installed'
required: false
default: '${{ github.home }}/.local/bin'
default: '$HOME/.local/bin'
runs:
using: 'composite'
steps:
- name: Install Brioche
shell: bash
run: |
chmod +x $GITHUB_ACTION_PATH/install-brioche.sh
$GITHUB_ACTION_PATH/install-brioche.sh '${{ inputs.install-dir }}' ${{ inputs.version }}
$GITHUB_ACTION_PATH/install-brioche.sh "${{ inputs.install-dir }}" ${{ inputs.version }}
- name: Add Brioche to PATH
shell: bash
run: echo '${{ inputs.install-dir }}' >> $GITHUB_PATH
run: echo "${{ inputs.install-dir }}" >> $GITHUB_PATH

0 comments on commit 43ac2ec

Please sign in to comment.