Skip to content

fix(deps): bump mongoDbDriverVersion from 5.4.0 to 5.5.1 #1326

fix(deps): bump mongoDbDriverVersion from 5.4.0 to 5.5.1

fix(deps): bump mongoDbDriverVersion from 5.4.0 to 5.5.1 #1326

Workflow file for this run

name: Publish mkdocs
on:
pull_request:
push:
branches:
- master
jobs:
deploy:
name: Build and publish docs
runs-on: ubuntu-latest
container:
image: spotify/techdocs:v1.2.6
steps:
- run: apk --no-cache add git
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
with:
fetch-depth: 1
- run: git config --global --add safe.directory /__w/mongodb-operator/mongodb-operator
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- run: git fetch origin gh-pages
- name: Dry run generated mkdocs
if: github.event_name == 'pull_request'
run: mkdocs build --config-file mkdocs.yml && ls -al
- name: Archive test build
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: site
path: |
site
retention-days: 1
- name: Publish generated mkdocs
if: github.event_name != 'pull_request'
run: mkdocs gh-deploy --config-file mkdocs.yml