Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasssvaz committed Jul 1, 2024
1 parent b28b8a3 commit aa77e7f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
bash ./tools/check-deploy-needed.sh
- name: Install dependencies
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
run: bash ./tools/prepare-ci.sh

- name: Build
Expand All @@ -115,7 +115,7 @@ jobs:
GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
IDF_BRANCH: ${{ matrix.idf_branch }}
TARGETS: ${{ matrix.target }}
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
run: |
bash ./tools/cron.sh
Expand All @@ -127,7 +127,7 @@ jobs:
path: build

- name: Upload library files
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
uses: actions/upload-artifact@v4
with:
name: libs-${{ matrix.idf_branch }}-${{ matrix.target }}
Expand Down Expand Up @@ -156,15 +156,15 @@ jobs:
bash ./tools/check-deploy-needed.sh
- name: Download artifacts
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
uses: actions/download-artifact@v4
with:
path: dist
pattern: libs-${{ matrix.idf_branch }}-*
merge-multiple: true

- name: Combine artifacts
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
shell: bash
run: |
set -e
Expand All @@ -183,14 +183,14 @@ jobs:
cp out/package_esp32_index.template.json dist/package_esp32_index.template.json
- name: Upload full esp32-arduino-libs archive
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
uses: actions/upload-artifact@v4
with:
name: esp32-arduino-libs
path: dist/esp32-arduino-libs.tar.gz

- name: Upload package_esp32_index.template.json
if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
uses: actions/upload-artifact@v4
with:
name: package-esp32-index-json
Expand Down

0 comments on commit aa77e7f

Please sign in to comment.