We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bc893b commit c4307bdCopy full SHA for c4307bd
.github/workflows/release.yaml
@@ -16,6 +16,10 @@ jobs:
16
environment:
17
name: github-pages
18
url: ${{ steps.deployment.outputs.page_url }}
19
+ # Ensure that the workflow runs only after a commit is pushed into the branch
20
+ # and not when the branch is created.
21
+ # This is to avoid running the workflow when a release/* branch is created.
22
+ if: github.event.before != '0000000000000000000000000000000000000000'
23
24
steps:
25
- name: Checkout
0 commit comments