Skip to content

Commit

Permalink
fix: unblock release: meddle with bazelignore
Browse files Browse the repository at this point in the history
  • Loading branch information
chickenandpork committed Jan 7, 2025
1 parent 757db4f commit bf5c8a6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
uses: actions/[email protected]
-
name: re-confirm a build
run: bazel run //docs:collate_docs
run: |
echo 'examples' > .bazelignore # remove '//docs'
bazel run //docs:collate_docs
release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -80,7 +82,9 @@ jobs:
-
name: Collate Docs
if: ${{ steps.release.outputs.release_created }}
run: bazel run //docs:collate_docs
run: |
echo 'examples' > .bazelignore # remove '//docs'
bazel run //docs:collate_docs
-
name: Deploy docs
if: ${{ steps.release.outputs.release_created }}
Expand Down

0 comments on commit bf5c8a6

Please sign in to comment.