Skip to content

chore: add netlify docs release workflows #1

chore: add netlify docs release workflows

chore: add netlify docs release workflows #1

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
workflow_dispatch:
inputs:
environment:
description: 'Deployment environment'
required: false
default: 'production'
type: choice
options:
- production
- preview
jobs:
release-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install dependencies
uses: flowexec/action@v1
with:
executable: 'install docs:'
timeout: '5m'
- name: Deploy to Netlify
uses: flowexec/action@v1
with:

Check failure on line 32 in .github/workflows/release-docs.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release-docs.yaml

Invalid workflow file

You have an error in your yaml syntax on line 32
executable: 'deploy docs:netlify ${{ github.event.inputs.environment || 'production' }}'
timeout: '5m'
flow-version: 'main'
secrets: |
{
"netlify-flow-site-id": "${{ secrets.NETLIFY_SITE_ID }}",
"netlify-pat": "${{ secrets.NETLIFY_AUTH_TOKEN }}"
}