Skip to content

trying this

trying this #8

Workflow file for this run

# creates a release from master

Check failure on line 1 in .github/workflows/docsdeploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docsdeploy.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: setup_git
# builds docs, pushes to docker hub and updates docs server
name: Docs_deploy
on:
workflow_dispatch:
inputs:
version:
description: "new version number"
required: true
jobs:
setup_git:
run: |
git config --global user.name "Gravitl"
git config --global user.email "[email protected]"
release:
uses: gravitl/netmaker-devops/.github/workflows/deploydocs.yml@master
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: ${{ inputs.version }}
secrets: inherit