Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ on:
# Allows the workflow to be triggered manually from the Actions tab
workflow_dispatch:

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -65,7 +68,7 @@ jobs:
BOARD: ${{ matrix.board }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Arduino CLI
uses: arduino/setup-arduino-cli@v2
Expand Down Expand Up @@ -254,7 +257,7 @@ jobs:
RELEASE: ${{ matrix.release }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Arduino CLI
uses: arduino/setup-arduino-cli@v2
Expand Down Expand Up @@ -338,7 +341,7 @@ jobs:

- name: 'Upload Artifacts'
if: env.HAVE_FILES == 'true'
uses: actions/upload-artifact/@v4
uses: actions/upload-artifact@v7
with:
name: multi-${{ matrix.release }}
path: ./binaries/
Expand All @@ -349,7 +352,7 @@ jobs:
needs: [test, build]
steps:
- name: Combine and upload build artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: multi-test-build
pattern: multi-*
Expand All @@ -363,7 +366,7 @@ jobs:
needs: deploy
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: multi-test-build
path: ./artifacts/
Expand All @@ -372,7 +375,7 @@ jobs:
run: ls -R ./artifacts/

- name: Deploy artifacts to release
uses: AButler/upload-release-assets@v3.0
uses: AButler/upload-release-assets@v4.0.0
with:
files: './artifacts/*'
repo-token: ${{ secrets.GITHUB_TOKEN }}