Skip to content

Commit

Permalink
uncomment conditions in site.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
googley42 committed Aug 19, 2024
1 parent 9090f38 commit a69351d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
- name: Check artifacts build process
run: sbt -J-XX:+UseG1GC -J-Xmx6g -J-Xms6g -J-Xss16m +publishLocal
- name: Check website build process
run: sbt docs/clean; sbt -J-XX:+UseG1GC -J-Xmx6g -J-Xms6g -J-Xss16m docs/buildWebsite
run: sbt docs/clean; sbt docs/buildWebsite
publish-docs:
name: Publish Docs
runs-on: ubuntu-latest
# if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.3.0
Expand All @@ -58,7 +58,7 @@ jobs:
generate-readme:
name: Generate README
runs-on: ubuntu-latest
# if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }}
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.3.0
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -344,5 +344,5 @@ lazy val docs = project
publish / skip := true,
mdocVariables ++= Map("ZIO_VERSION" -> zioVersion)
)
.dependsOn(zioDynamodb, zioDynamodbJson)
.dependsOn(zioDynamodb, zioDynamodbCe, zioDynamodbJson)
.enablePlugins(WebsitePlugin)

0 comments on commit a69351d

Please sign in to comment.