mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-09 20:27:41 +08:00
1794f2b98f
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
68 lines
2.1 KiB
YAML
68 lines
2.1 KiB
YAML
on:
|
|
push:
|
|
# Sequence of patterns matched against refs/tags
|
|
tags:
|
|
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
name: Create Release
|
|
|
|
# Permissions required to create a release and upload assets
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
name: Create Release
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
- 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: |
|
|
See the [CHANGELOG](https://github.com/lvgl/lvgl/blob/master/docs/CHANGELOG.rst)
|
|
draft: false
|
|
prerelease: false
|
|
|
|
|
|
# Remove large folders and create a lite zip
|
|
- name: Prepare Lite Package
|
|
run: |
|
|
echo "Preparing lite package in a temporary directory..."
|
|
|
|
# Create a temporary directory for the lite package contents
|
|
FOLDER_NAME="lvgl-${{ github.ref_name }}-lite"
|
|
ZIP_NAME="$FOLDER_NAME.zip"
|
|
mkdir -p $FOLDER_NAME
|
|
|
|
echo "Copying files to lite directory (excluding large/unnecessary folders)..."
|
|
rsync -av \
|
|
--exclude='.git' \
|
|
--exclude='.github' \
|
|
--exclude='tests' \
|
|
--exclude='demos' \
|
|
--exclude='scripts' \
|
|
--exclude='docs' \
|
|
--exclude='examples' \
|
|
./ $FOLDER_NAME
|
|
|
|
# Create a zip with lvgl-lite directory as its root directory
|
|
zip -r "$ZIP_NAME" $FOLDER_NAME
|
|
|
|
# Export the variable for the next step
|
|
echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV
|
|
|
|
# Upload the lite zip to the release
|
|
- name: Upload Lite Asset
|
|
uses: softprops/action-gh-release@v3
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
files: ./${{ env.ZIP_NAME }}
|