Skip to content

fx: workflow

fx: workflow #10

Workflow file for this run

name: CD
on:
push:
branches:
- main
tags:
- v*
jobs:
push-backend:
name: Build backend
uses: ./actions/build-push-gcloud/action.yaml@main

Check failure on line 13 in .github/workflows/cd-build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/cd-build.yaml

Invalid workflow file

invalid value workflow reference: references to workflows must be rooted in '.github/workflows'
with:
google_key: ${{ secrets.GCLOUD_SECRET_KEY }}
repo: services/whisper-notes-backend
dockerfile: backend.Dockerfile
registry: europe-north1-docker.pkg.dev
project_id: ${{ secrets.GCLOUD_PROJECT }}
secrets: inherit
push-frontend:
name: Build frontend
uses: ./actions/build-push-gcloud/action.yaml@main
with:
google_key: ${{ secrets.GCLOUD_SECRET_KEY }}
repo: services/whisper-notes-frontend
dockerfile: frontend.Dockerfile
registry: europe-north1-docker.pkg.dev
project_id: ${{ secrets.GCLOUD_PROJECT }}
secrets: inherit