Skip to content

Build 0.8.2

Build 0.8.2 #36

Workflow file for this run

name: Releases
on:
push:
tags:
- '*'
jobs:
code-tests:
name: Run code tests
uses: ./.github/workflows/code-tests.yml

Check failure on line 11 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/code-tests.yml" (source tag with sha:7b4c9ccb557938f122e0c0a902f473477e06693d) : workflow is not reusable as it is missing a `on.workflow_call` trigger
build:
needs: [ code-tests ]
runs-on: ubuntu-latest
env:
NO_COLOR: 1
QIT_DISABLE_ONBOARDING: yes
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
tools: none
php-version: '7.2'
- name: Version Validation
run: |
if ./qit --version | grep -q "qit_dev_build"; then
echo "Development build detected. Exiting with failure."
exit 1
else
echo "Valid build version. Proceeding."
fi
- uses: ncipollo/release-action@v1
with:
artifacts: "qit"
bodyFile: ./docs/changelogs/${{github.ref_name}}.md
generateReleaseNotes: true
- name: Basic Validation
run: ./qit