Skip to content

Commit

Permalink
ci: fix meta
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO committed Dec 20, 2024
1 parent 38ca264 commit 8e1db9f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@ jobs:
version=${tag#v}+${commit_hash}.$(date +%Y%m%d)
fi
echo "tag=$tag
version=$version
is_release=$is_release
is_pre_release=$is_pre_release" | tee -a "$GITHUB_OUTPUT"
if $is_release; then
if $is_pre_release; then
build_config="RelWithDebInfo"
Expand All @@ -64,7 +59,13 @@ jobs:
else
build_config="Debug"
fi
echo "tag=$tag
version=$version
is_release=$is_release
is_pre_release=$is_pre_release
build_config=$build_config" | tee -a "$GITHUB_OUTPUT"
outputs:
is_release: ${{ steps.set.outputs.is_release }}
is_pre_release: ${{ steps.set.outputs.is_pre_release }}
Expand Down

0 comments on commit 8e1db9f

Please sign in to comment.