Skip to content

wip: fix some workflow file errors #29

wip: fix some workflow file errors

wip: fix some workflow file errors #29

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
release_web:
type: boolean
description: Release web packages
default: true
release_csharp:
type: boolean
description: Release C# packages
default: true
release_kotlin_android:
type: boolean
description: Release Android packages
default: true
jobs:
web:
uses: ./.github/workflows/~publish_web.yml@feature/publish-pipeline

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: cannot specify version when calling local workflows
secrets: inherit
if: (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_web == 'true')
with:
version: ${{github.run_number}}
npm_tag: latest
force: true
dotnet:
uses: ./.github/workflows/~publish_dotnet.yml@feature/publish-pipeline
secrets: inherit
if: (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_csharp == 'true')
with:
version: ${{github.run_number}}
force: true
kotlin:
uses: ./.github/workflows/~publish_kotlin.yml@feature/publish-pipeline
secrets: inherit
if: (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_kotlin_android == 'true')
with:
version: ${{github.run_number}}
force: true