Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: Correct mdbook extraction command (#28)

Testing locally on my Linux environment, anyway, the `--strip-components` flag is causing the unpacking to fail because the binary is already at the root of the archive. I believe this is causing #26.

authored by

Cassidy James Blaede and committed by
GitHub
dd3bbb8b c849473e

+1 -1
+1 -1
.github/workflows/mdbook.yml
··· 44 44 URL="https://github.com/rust-lang/mdBook/releases/download/v${MDBOOK_VERSION}/${ARCHIVE}" 45 45 mkdir -p mdbook-bin 46 46 curl -sSL -o mdbook.tar.gz "$URL" 47 - tar -xzf mdbook.tar.gz -C mdbook-bin --strip-components=1 47 + tar -xzf mdbook.tar.gz -C mdbook-bin 48 48 rm mdbook.tar.gz 49 49 50 50 - name: Setup Pages