Skip to content

Commit

Permalink
Fix tag check
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKahr committed Dec 1, 2024
1 parent 72db459 commit fc80d65
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Check for new version

on:
schedule:
- cron: "*/59 * * * *"
- cron: "*/30 * * * *"
workflow_dispatch:

jobs:
check-version:
Expand All @@ -25,6 +26,9 @@ jobs:
with:
tag: ${{ steps.releaseVersion.outputs.release }}

- name: Debug
run: echo ${{ steps.checkTag.outputs.tag_exists }}

- name: Invoke workflow with inputs
uses: benc-uk/workflow-dispatch@v1
if: steps.checkTag.outputs.tag_exists == 'false'
Expand Down

0 comments on commit fc80d65

Please sign in to comment.