Lines Matching +full:rev +full:- +full:parse
6 - master
8 - book/**
9 - .github/workflows/site.yml
14 runs-on: ubuntu-latest
16 - uses: actions/checkout@v2
18 - name: Get mdBook
21 export MDBOOK_TARBALL="mdbook-${MDBOOK_VERSION}-x86_64-unknown-linux-gnu.tar.gz"
23 curl -Lf "${MDBOOK_URL}" | tar -xzC book
24 book/mdbook --version
26 - name: Build
29 - name: Push to gh-pages
30 working-directory: book/build
32 REV=$(git rev-parse --short HEAD)
34 … git remote add upstream https://x-access-token:${{secrets.GITHUB_TOKEN}}@github.com/dtolnay/cxx
37 git add -A .
38 git commit -qm "Website @ ${{github.repository}}@${REV}"
39 git push -q upstream HEAD:refs/heads/gh-pages --force