Skip to content

Build & Deploy Docs #445

Build & Deploy Docs

Build & Deploy Docs #445

Workflow file for this run

name: Build & Deploy Docs
on:
workflow_dispatch:
inputs:
release-tag:
description: "dstack version"
jobs:
build-docs:
uses: ./.github/workflows/build-docs.yml
with:
release-tag: ${{ inputs.release-tag }}

Check failure on line 13 in .github/workflows/docs.yaml

View workflow run for this annotation

GitHub Actions / Build & Deploy Docs

Invalid workflow file

The workflow is not valid. .github/workflows/docs.yaml (Line: 13, Col: 20): Invalid input, release-tag is not defined in the referenced workflow.
secrets: inherit
deploy-docs:
needs: [build-docs]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: site
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.6.4
with:
repository-name: dstackai/dstackai.github.io
branch: gh-pages
token: ${{ secrets.GH_TOKEN }}
folder: site