Skip to content

Release

Release #106

Workflow file for this run

name: Release
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+**'
workflow_dispatch:
inputs:
version:
description: 'Release version'
required: true
default: ''
type: choice
options:
- patch
- minor
- major
jobs:
arduino-devops:
uses: Infineon/arduino-devops/.github/workflows/release.yml@latest

Check warning on line 21 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Workflow syntax warning

In .github/workflows/release.yml (Line: 21, Col: 11): Error from called workflow Infineon/arduino-devops/.github/workflows/release.yml@latest (Line: 78, Col: 14): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
with:
setup-script: bash ./tools/dev-setup.sh
version: ${{ inputs.version }}
secrets: inherit