Skip to content

dump

dump #5

Workflow file for this run

name: CD Next Release
on:
push:
branches:
- next
permissions:
packages: write
contents: write
issues: write
id-token: write
actions: read
jobs:
release:

Check failure on line 19 in .github/workflows/cd_next.yml

View workflow run for this annotation

GitHub Actions / CD Next Release

Invalid workflow file

The workflow is not valid. .github/workflows/cd_next.yml (Line: 19, Col: 3): The workflow must contain at least one job with no dependencies.
name: Create a New Release
runs-on: ubuntu-latest
needs: [ setup ]
steps:
- name: Make Release
id: release
uses: pagopa/github-actions-template/node-release@v1.13.1
with:
semver: buildNumber
github_token: ${{ secrets.BOT_TOKEN_GITHUB }}
skip_ci: false
prerelease: true
deploy:
needs:
- release
name: Deploy on CDN
uses: ./.github/workflows/deploy_on_cdn.yml
with:
environment: 'dev'
secrets: inherit