mirror of
https://github.com/httpie/cli.git
synced 2024-11-25 01:03:27 +01:00
6bf39e469f
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 3. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
737 B
YAML
34 lines
737 B
YAML
name: Update & Install Docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- .github/workflows/docs-update-install.yml
|
|
- docs/installation/*
|
|
|
|
# Allow to call the workflow manually
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
doc:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v3
|
|
with:
|
|
python-version: 3.9
|
|
- run: make install
|
|
- run: make doc-update-install
|
|
- uses: Automattic/action-commit-to-branch@master
|
|
with:
|
|
branch: master
|
|
commit_message: |
|
|
Auto-update install docs
|
|
|
|
Via .github/workflows/docs-update-install.yml
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|