Skip to content

fix: Add on.workflow_call trigger to ci-build #15

fix: Add on.workflow_call trigger to ci-build

fix: Add on.workflow_call trigger to ci-build #15

Workflow file for this run

on:
push:
tags:
- 'v*'
name: ci-tag
env:
DOTNET_VERSION: 7.0.x
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}/api
jobs:
# Delegate building and containerizing to a single workflow.
build-and-containerize:
uses: ./.github/workflows/ci-build.yml
release:
runs-on: ubuntu-latest
needs: containerize

Check failure on line 21 in .github/workflows/ci-tag.yml

View workflow run for this annotation

GitHub Actions / ci-tag

Invalid workflow file

The workflow is not valid. .github/workflows/ci-tag.yml (Line: 21, Col: 12): Job 'release' depends on unknown job 'containerize'.
steps:
- name: Download release notes
uses: actions/checkout@v4
with:
sparse-checkout: |
README.md
- name: Create release
uses: softprops/action-gh-release@v1
with:
body_path: README.md
tag_name: ${{ github.ref_name }}