Skip to content

Commit 9f6f2b2

Browse files
authored
Merge pull request #96 from DataFog/codex/fix-failing-github-actions-in-workflows
2 parents 5b2b6ec + 604d17f commit 9f6f2b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/beta-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "commit_count=$COMMIT_COUNT" >> $GITHUB_OUTPUT
4646
echo "last_beta=$LAST_BETA" >> $GITHUB_OUTPUT
4747
48-
if [ "$COMMIT_COUNT" -gt 0 ] || [ "${{ github.event.inputs.force_build == 'true' }}" = "true" ]; then
48+
if [ "$COMMIT_COUNT" -gt 0 ] || [ "${{ github.event.inputs.force_build }}" = "true" ]; then
4949
echo "has_changes=true" >> $GITHUB_OUTPUT
5050
else
5151
echo "has_changes=false" >> $GITHUB_OUTPUT

.github/workflows/nightly-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "Commits since last alpha: $COMMIT_COUNT"
4747
echo "commit_count=$COMMIT_COUNT" >> $GITHUB_OUTPUT
4848
49-
if [ "$COMMIT_COUNT" -gt 0 ] || [ "${{ github.event.inputs.force_build == 'true' }}" = "true" ]; then
49+
if [ "$COMMIT_COUNT" -gt 0 ] || [ "${{ github.event.inputs.force_build }}" = "true" ]; then
5050
echo "has_changes=true" >> $GITHUB_OUTPUT
5151
echo "✅ Changes detected, proceeding with nightly build"
5252
else

0 commit comments

Comments
 (0)