Skip to content

Commit

Permalink
fix pr check
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Jul 4, 2024
1 parent 2af0160 commit 1d9a2ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
filterOutClosed: true

- run: |
echo "Current PR: ${{ steps.pr.outputs.pr_found }}"
echo "Current branch: ${{ github.ref }}"
echo "is PR: ${{ steps.pr.outputs.pr_found }}"
echo "current branch: ${{ github.ref }}"
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@v1.3.0
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
path: report.zip

- name: Trigger homepage build
if: ${{ (steps.pr.outputs.pr_found != 'true') && (github.ref == 'main') }}
if: ${{ (steps.pr.outputs.pr_found != 'true') && (github.ref == 'refs/heads/main') }}
uses: benc-uk/workflow-dispatch@v1
with:
workflow: deploy-page
Expand Down

0 comments on commit 1d9a2ed

Please sign in to comment.