Skip to content

improve release checks #465

improve release checks

improve release checks #465

Workflow file for this run

name: CI Pipeline
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '.github/**'
- '**.md'
- 'makefile'
jobs:
# ------------------------------------------------------------------------------------------------------------------------
review:
name: Review Pipeline
uses: ./.github/workflows/step_review.yml
with:
PHP_VERSION: 8.2
# ------------------------------------------------------------------------------------------------------------------------
release:
name: Release Pipeline
uses: ./.github/workflows/step_release.yml
needs: [ review, checks ]

Check failure on line 28 in .github/workflows/ci_pipe.yml

View workflow run for this annotation

GitHub Actions / CI Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/ci_pipe.yml (Line: 28, Col: 22): Job 'release' depends on unknown job 'checks'.
secrets:
DOCKER_USERNAME: "${{ secrets.DOCKER_USERNAME }}"
DOCKER_PASSWORD: "${{ secrets.DOCKER_PASSWORD }}"
PACKAGIST_USER: "${{ secrets.PACKAGIST_USER }}"
PACKAGIST_TOKEN: "${{ secrets.PACKAGIST_TOKEN }}"
with:
VERSION: "dev-main"
PHP_VERSION: 8.2