Skip to content

Commit aa77e7f

Browse files
committed
test
1 parent b28b8a3 commit aa77e7f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/cron.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
bash ./tools/check-deploy-needed.sh
106106
107107
- name: Install dependencies
108-
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
108+
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
109109
run: bash ./tools/prepare-ci.sh
110110

111111
- name: Build
@@ -115,7 +115,7 @@ jobs:
115115
GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
116116
IDF_BRANCH: ${{ matrix.idf_branch }}
117117
TARGETS: ${{ matrix.target }}
118-
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
118+
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
119119
run: |
120120
bash ./tools/cron.sh
121121
@@ -127,7 +127,7 @@ jobs:
127127
path: build
128128

129129
- name: Upload library files
130-
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
130+
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
131131
uses: actions/upload-artifact@v4
132132
with:
133133
name: libs-${{ matrix.idf_branch }}-${{ matrix.target }}
@@ -156,15 +156,15 @@ jobs:
156156
bash ./tools/check-deploy-needed.sh
157157
158158
- name: Download artifacts
159-
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
159+
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
160160
uses: actions/download-artifact@v4
161161
with:
162162
path: dist
163163
pattern: libs-${{ matrix.idf_branch }}-*
164164
merge-multiple: true
165165

166166
- name: Combine artifacts
167-
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
167+
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
168168
shell: bash
169169
run: |
170170
set -e
@@ -183,14 +183,14 @@ jobs:
183183
cp out/package_esp32_index.template.json dist/package_esp32_index.template.json
184184
185185
- name: Upload full esp32-arduino-libs archive
186-
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
186+
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
187187
uses: actions/upload-artifact@v4
188188
with:
189189
name: esp32-arduino-libs
190190
path: dist/esp32-arduino-libs.tar.gz
191191

192192
- name: Upload package_esp32_index.template.json
193-
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
193+
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
194194
uses: actions/upload-artifact@v4
195195
with:
196196
name: package-esp32-index-json

0 commit comments

Comments
 (0)