Skip to content

Commit

Permalink
attempt to fix daily.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-tennert committed Jan 24, 2025
1 parent 6210e7e commit 681929e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
fetch-depth: 0 # Required to count the commits
- name: Get new commits
id: get_commits
run: echo "::set-output name=new_commit_count::$(git log --oneline --since '24 hours ago' | wc -l)"
run: echo "{new_commit_count}={$(git log --oneline --since '24 hours ago' | wc -l)}" >> $GITHUB_OUTPUT
release:
needs: check-release
uses: ./.github/workflows/release.yml
if: ${{ needs.check-release.outputs.new_commit_count > 0 }}
if: ${{ tonumber(needs.check-release.outputs.new_commit_count) > 0 }}

0 comments on commit 681929e

Please sign in to comment.