Skip to content

Commit

Permalink
wait oop
Browse files Browse the repository at this point in the history
  • Loading branch information
cgytrus authored Feb 13, 2024
1 parent 7253487 commit bda4d86
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions combine/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,19 @@ runs:
export REAL_PATH=$(realpath "${{ github.action_path }}")
echo "path=$REAL_PATH" >> $GITHUB_OUTPUT
- name: Detect platform
id: platform
shell: bash
run: |
if [ "$RUNNER_OS" = "Linux" ]; then
ID=linux
elif [ "$RUNNER_OS" = "Windows" ]; then
ID=win
elif [ "$RUNNER_OS" = "macOS" ]; then
ID=mac
fi
echo "id=$ID" >> $GITHUB_OUTPUT
- name: Download CLI
uses: robinraju/release-downloader@v1.9
with:
Expand Down

0 comments on commit bda4d86

Please sign in to comment.