Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -526,26 +526,55 @@ jobs:
permissions:
contents: read
steps:
- name: Check if CLI docs changed
id: check-docs
env:
GH_TOKEN: ${{ secrets.CLI_RELEASE_PAT }}
RELEASE_TAG: ${{ needs.prepare.outputs.release_tag }}
PREVIOUS_TAG: ${{ needs.prepare.outputs.previous_tag }}
run: |
if [ -z "$PREVIOUS_TAG" ]; then
echo "No previous tag — assuming docs changed"
echo "changed=true" >> "$GITHUB_OUTPUT"
exit 0
fi
CHANGED=$(gh api repos/docker/model-runner/compare/${PREVIOUS_TAG}...${RELEASE_TAG} \
--jq '[.files[].filename | select(startswith("cmd/cli/docs/reference/"))] | length')
if [ "$CHANGED" -gt 0 ]; then
echo "CLI docs changed ($CHANGED files)"
echo "changed=true" >> "$GITHUB_OUTPUT"
else
echo "No CLI docs changes between $PREVIOUS_TAG and $RELEASE_TAG — skipping"
echo "changed=false" >> "$GITHUB_OUTPUT"
fi

- name: Checkout docs
if: steps.check-docs.outputs.changed == 'true'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
repository: docker/docs
token: ${{ secrets.CLI_RELEASE_PAT }}
fetch-depth: 0

- name: Set up Go
if: steps.check-docs.outputs.changed == 'true'
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417
with:
go-version: 1.25.8
cache: true

- name: Vendor model-runner CLI docs
if: steps.check-docs.outputs.changed == 'true'
env:
RELEASE_TAG: ${{ needs.prepare.outputs.release_tag }}
run: |
VENDOR_MODULE=github.com/docker/model-runner@${RELEASE_TAG} make vendor
# Remove the second require block added by `go get` — the docs repo
# only needs the direct dependency in the first require block.
awk '/^require \(/{n++} n==2{if(/^\)/) n=3; next} n!=2' go.mod > go.mod.tmp && mv go.mod.tmp go.mod

- name: Create pull request
if: steps.check-docs.outputs.changed == 'true'
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0
with:
token: ${{ secrets.DOCKER_DOCS }}
Expand Down
Loading