Skip to content

Commit

Permalink
Fix something I've neglected to previously fix
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Dec 1, 2024
1 parent 2f2ba10 commit 297105d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ jobs:
GITHUB_REPO: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |-
cargo doc --verbose --all-features --features bevy/webgl2,bevy/x11 &&
cargo doc --no-deps --verbose --all-features --features bevy/webgl2,bevy/x11 &&
echo "<meta http-equiv=refresh content=0;url=bevy_yoleck/index.html>" > target/doc/index.html &&
required_features=$(
(
cargo metadata --no-deps --format-version 1 \
| jq '.packages[].targets[] | select(.kind == ["example"]) | .["required-features"][]' -r \
| jq '.packages[].targets[] | select(.kind == ["example"]) | .["required-features"][]' -r
echo bevy/webgl2
echo bevy/x11
) | tr '\n' ' '
Expand Down

0 comments on commit 297105d

Please sign in to comment.