Skip to content

Commit

Permalink
Use ref name and use capital letter for directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lbuesching committed Jan 11, 2024
1 parent a33f380 commit a3a070e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- name: Set release configuration for release branches
id: set_buildconfig
run: |
if [[ "${{github.base_ref}}" == "release" ]]; then
echo "::set-output name=build_configuration::release"
if [[ "${{ github.ref_name }}" == "release" ]]; then
echo "::set-output name=build_configuration::Release"
else
echo "::set-output name=build_configuration::debug"
echo "::set-output name=build_configuration::Debug"
fi
build_test:
Expand Down

0 comments on commit a3a070e

Please sign in to comment.