Skip to content

ci: fix and rename build-backend action #1

ci: fix and rename build-backend action

ci: fix and rename build-backend action #1

Workflow file for this run

name: build-backend
on:
push:
branches: [ "main" ]
jobs:
build-backend:
name: Build backend

Check failure on line 9 in .github/workflows/build-backend.yml

View workflow run for this annotation

GitHub Actions / build-backend

Invalid workflow file

The workflow is not valid. .github/workflows/build-backend.yml (Line: 9, Col: 5): Required property is missing: runs-on
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build & push Docker image
uses: mr-smithers-excellent/docker-build-push@v6
with:
image: cess-advisor-backend
tags: latest
registry: ghcr.io
dockerfile: Dockerfile
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_TOKEN }}