docs: remove v0.7.0 shell completion instructions #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: website | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
prerelease-docs-build-deploy: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac | |
- run: "git fetch origin gh-pages --depth=1" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: latest | |
- name: Install dependencies, compile and deploy docs | |
run: | | |
git config user.name jj-docs-bot | |
git config user.email [email protected] | |
.github/scripts/docs-build-deploy 'https://martinvonz.github.io/jj' prerelease main --push | |
- name: "Show `git diff --stat`" | |
run: git diff --stat gh-pages^ gh-pages || echo "(No diffs)" |