mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-30 02:41:12 +00:00
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout).
Updates `actions/checkout` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8e8c483db8...de0fac2e45)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com>
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
name: Build Documentation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
release:
|
|
types: [published]
|
|
|
|
|
|
# disable permissions for all of the available permissions
|
|
permissions: {}
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-docs:
|
|
permissions:
|
|
contents: write # for mike to push
|
|
name: Deploy Docs through mike
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: true
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r docs/requirements-docs.txt
|
|
|
|
- name: Fetch gh-pages branch
|
|
run: |
|
|
git fetch origin gh-pages --depth=1
|
|
|
|
- name: Configure Git user
|
|
run: |
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
|
|
- name: Build and push Mike
|
|
if: ${{ github.event_name == 'push' }}
|
|
run: |
|
|
mike deploy ${REF_NAME} latest --push --update-aliases
|
|
env:
|
|
REF_NAME: ${{ github.ref_name }}
|
|
|
|
- name: Build and push Mike - Release
|
|
if: ${{ github.event_name == 'release' }}
|
|
run: |
|
|
mike deploy ${REF_NAME} stable --push --update-aliases
|
|
env:
|
|
REF_NAME: ${{ github.ref_name }}
|
|
|
|
- name: Show mike versions
|
|
run: |
|
|
mike list
|