2020-11-02 12:51:12 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# Sequence of patterns matched against refs/tags
|
|
|
|
tags:
|
2021-07-16 17:51:39 +02:00
|
|
|
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
|
2020-11-02 12:51:12 +01:00
|
|
|
|
|
|
|
name: Create Release
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Create Release
|
2024-04-08 18:18:13 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2020-11-02 12:51:12 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2023-11-02 11:03:37 +01:00
|
|
|
uses: actions/checkout@v4
|
2020-11-02 12:51:12 +01:00
|
|
|
- name: Create Release
|
|
|
|
id: create_release
|
|
|
|
uses: actions/create-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
|
|
|
with:
|
|
|
|
tag_name: ${{ github.ref }}
|
|
|
|
release_name: Release ${{ github.ref }}
|
|
|
|
body: |
|
2023-05-18 12:06:32 +02:00
|
|
|
See the [CHANGELOG](https://github.com/lvgl/lvgl/blob/master/docs/CHANGELOG.rst)
|
2020-11-02 12:51:12 +01:00
|
|
|
draft: false
|
|
|
|
prerelease: false
|