Skip to content

Commit

Permalink
fix macos
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Jan 25, 2024
1 parent 728efc2 commit c65812a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ runs:
steps:
- run: |
curl -fsSL https://dosei.ai/install.sh | sh
echo "/home/runner/.dosei/bin" >> $GITHUB_PATH
if [ "$RUNNER_OS" == "Linux" ]; then
echo "/home/runner/.dosei/bin" >> $GITHUB_PATH
elif [ "$RUNNER_OS" == "macOS" ]; then
echo "/Users/runner/.dosei/bin" >> $GITHUB_PATH
fi
shell: bash
- run: echo "DOSEI_TOKEN=${{ inputs.token }}" >> $GITHUB_ENV
if: ${{ inputs.token }}
Expand Down

0 comments on commit c65812a

Please sign in to comment.