Skip to content

Permissions and concurrency #1

Permissions and concurrency

Permissions and concurrency #1

Workflow file for this run

name: Deploy

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

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

(Line: 14, Col: 3): The workflow must contain at least one job with no dependencies.
on:
workflow_call:
inputs:
name:
required: true
type: string
url:
required: true
type: string
jobs:
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: ${{ inputs.name }}
url: ${{ inputs.url }}
steps:
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: ${{ inputs.name }}-payload
# TODO: Implement deployment