From 8ab5a694d1e87f8604f6edfff964553345f49001 Mon Sep 17 00:00:00 2001 From: Armen Poghosyan Date: Sat, 30 Mar 2024 16:31:21 +0400 Subject: [PATCH] Update push.yml --- .github/workflows/push.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 4de8ec07c..8b1378917 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -1,32 +1 @@ -name: IDF v5.1 -on: - workflow_dispatch: # Manually start a workflow -jobs: - build-libs: - name: Build Arduino Libs - runs-on: macos-14 - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.11' - - name: Install dependencies - run: bash ./tools/prepare-ci.sh - - name: Get current branch - run: | - echo "GIT_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_ENV - - name: Build Arduino Libs - run: bash ./build.sh - - name: Release - uses: jason2866/action-gh-release@v1.3 - with: - tag_name: ${{ github.run_number }} - body_path: release-info.txt - prerelease: true - files: | - dist/framework* - release-info.txt - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}