mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: Use GitHub Actions to generate recursive source code zips for releases
We do this for all ESP-IDF releases, this step automates it. Uses action added in https://github.com/espressif/github-actions/pull/10
This commit is contained in:
parent
14c7c49515
commit
15f34b4cc2
17
.github/workflows/release_zips.yml
vendored
Normal file
17
.github/workflows/release_zips.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: Create zip file with recursive source clone for release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release_zips:
|
||||||
|
name: Create release zip file
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Create a recursive clone source zip
|
||||||
|
uses: espressif/github-actions/release_zips@master
|
||||||
|
env:
|
||||||
|
RELEASE_PROJECT_NAME: ESP-IDF
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in New Issue
Block a user