Skip to content

Commit 910c0c3

Browse files
committed
tsg generate before used
1 parent 2dfb3c4 commit 910c0c3

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/parallel_build.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@ jobs:
8484
idf_version_string="${IDF_BRANCH//\//_}-$IDF_COMMIT"
8585
7z a -mx=9 -tzip -xr'!.*' framework-arduinoespressif32-${idf_version_string}.zip framework-arduinoespressif32/
8686
87+
- name: Set tag name
88+
id: set_tag_name
89+
run: |
90+
IDF_VERSION=$(grep 'esp-idf branch' release-info.txt | sed -E 's/.*branch \[release\/v([0-9]+\.[0-9]+)\].*/\1/')
91+
DATE=$(date +"%d%m-%H%M")
92+
echo "tag_name=${DATE}-${IDF_VERSION}" >> $GITHUB_OUTPUT
93+
8794
- name: Release framework-arduinoespressif32
8895
uses: jason2866/[email protected]
8996
with:
@@ -95,9 +102,3 @@ jobs:
95102
release-info.txt
96103
env:
97104
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
98-
- name: Set tag name
99-
id: set_tag_name
100-
run: |
101-
IDF_VERSION=$(grep 'esp-idf branch' release-info.txt | sed -E 's/.*branch \[release\/v([0-9]+\.[0-9]+)\].*/\1/')
102-
DATE=$(date +"%d%m-%H%M")
103-
echo "tag_name=${DATE}-${IDF_VERSION}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)