Skip to content

ci: fix filename

ci: fix filename #83

Workflow file for this run

name: Apps Monorepo Deployment
on:
push:
branches:
- dev
- staging
- main
jobs:
changes:
name: Path filter
runs-on: ubuntu-latest
outputs:
www: ${{ steps.filter.outputs.www }}
app: ${{ steps.filter.outputs.app }}
steps:
- name: Checkout
uses: 'actions/checkout@v3'
- uses: dorny/paths-filter@v2
id: filter
with:
base: ${{ github.ref }}
filters: |
www:
- '.env.*'
- 'apps/www/**'
- 'packages/**'
app:
- '.env.*'
- 'apps/app/**'
- 'packages/**'
www-deploy:
needs: changes
if: ${{ needs.changes.outputs.www == 'true' }}
secrets: inherit
uses: ./.github/workflows/deploy.yml

Check failure on line 41 in .github/workflows/prepare.yml

View workflow run for this annotation

GitHub Actions / Apps Monorepo Deployment

Invalid workflow file

The workflow is not valid. .github/workflows/prepare.yml (Line: 41, Col: 11): Input CLOUDFLARE_PROJECT_NAME is required, but not provided while calling. .github/workflows/prepare.yml (Line: 37, Col: 3): Error calling workflow 'menthorlabs/menthor/.github/workflows/deploy.yml@394beae2e44565235913f8fb6a37f2cef92e6d53'. The nested job 'setup-build-publish-deploy' is requesting 'deployments: write', but is only allowed 'deployments: none'.
with:
APP_NAME: www
app-deploy:
needs: changes
if: ${{ needs.changes.outputs.app == 'true' }}
secrets: inherit
uses: ./.github/workflows/deploy.yml
with:
APP_NAME: app