diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index ea253193..dd23a90e 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -38,7 +38,6 @@ jobs: generate-readme: name: Generate README runs-on: ubuntu-latest - if: ${{ (github.event_name == 'push') || (github.event_name == 'published') }} steps: - name: Git Checkout uses: actions/checkout@v3.1.0 diff --git a/zio-sbt-website/src/main/scala/zio/sbt/WebsiteUtils.scala b/zio-sbt-website/src/main/scala/zio/sbt/WebsiteUtils.scala index e410898b..f0e0eeed 100644 --- a/zio-sbt-website/src/main/scala/zio/sbt/WebsiteUtils.scala +++ b/zio-sbt-website/src/main/scala/zio/sbt/WebsiteUtils.scala @@ -131,11 +131,6 @@ object WebsiteUtils { Job( id = "generate-readme", name = "Generate README", - condition = Some( - Condition.Expression("github.event_name == 'push'") || Condition.Expression( - "github.event_name == 'published'" - ) - ), steps = Seq( Step.SingleStep( name = "Git Checkout",