Skip to content

Merge branch 'develop' of github.com:OpenShock/API into develop #14

Merge branch 'develop' of github.com:OpenShock/API into develop

Merge branch 'develop' of github.com:OpenShock/API into develop #14

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

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-tag.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci-tag.yml" -> "./.github/workflows/ci-build.yml" (source tag with sha:321df7da18b55196b643f9475a5e9a62af493d5c) : workflow is not reusable as it is missing a `on.workflow_call` trigger
release:
runs-on: ubuntu-latest
needs: 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 }}