summaryrefslogtreecommitdiff
path: root/src/libs/lvgl/.github/workflows/release.yml
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-02-23 20:40:02 (GMT)
committerJean-François Milants <jf@codingfield.com>2021-02-23 20:53:50 (GMT)
commit094f98743db630cf070d9fe97e14b24db6450112 (patch)
treee7106bbcf902981ee6ac18364e319400b8a6bb86 /src/libs/lvgl/.github/workflows/release.yml
parent67c545b1fbd368b99b111a1822fe8da815468e76 (diff)
Fix LVGL submodule (sorry!)
Diffstat (limited to 'src/libs/lvgl/.github/workflows/release.yml')
m---------src/libs/lvgl0
-rw-r--r--src/libs/lvgl/.github/workflows/release.yml27
2 files changed, 0 insertions, 27 deletions
diff --git a/src/libs/lvgl b/src/libs/lvgl
new file mode 160000
+Subproject b89c30eafe1397a778ae5d65f108a0ef820de12
diff --git a/src/libs/lvgl/.github/workflows/release.yml b/src/libs/lvgl/.github/workflows/release.yml
deleted file mode 100644
index b0fab0f..0000000
--- a/src/libs/lvgl/.github/workflows/release.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-on:
- push:
- # Sequence of patterns matched against refs/tags
- tags:
- - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
-
-name: Create Release
-
-jobs:
- build:
- name: Create Release
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - 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/CHANGELOG.md)
- draft: false
- prerelease: false