This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-stormcrawler-site.git
commit bdbefdc5cb34bf933d62caa2706eacab1a052f0d Author: Richard Zowalla <[email protected]> AuthorDate: Thu Apr 25 09:59:28 2024 +0200 Automatically publish the website on a push to "main". --- .github/workflows/publish.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8dcfa40..06527ba 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,9 +17,13 @@ # This action will build and publish branch to # https://shiro.apache.org/ -name: Publish +name: Publish website on: + # Runs on pushes targeting the default branch + push: + branches: [ "main" ] + # Allows you to run this workflow manually from the Actions tab workflow_dispatch:
