Skip to content

Updated release reusable workflow #350

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,24 @@ 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
with:
release-title: XMC-for-Arduino
setup-script: bash ./tools/dev-setup.sh
version: ${{ inputs.version }}
secrets: inherit
4 changes: 3 additions & 1 deletion platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
# The information about this Arduino compatible environment
# ---------
name=XMC Family
version=4.0.0
# The version field is automatically added during
# the core release packaging. Leave empty.
version=

# Build related core definitions
# ---------
Expand Down
Loading