Skip to content
Compare
Choose a tag to compare
@per1234 per1234 released this 08 Apr 10:11
· 572 commits to main since this release
65a61a2

Migration guide for arduino/actions/libraries/compile-examples action users

Action name change

With the move to this dedicated repository from its provisional home in the experimental repository, the action name has changed. This requires a change to workflows using the action.

Change:

uses: arduino/actions/libraries/compile-examples@master

to:

uses: arduino/compile-examples@v1

(BREAKING) Default sketches report path change

(#7) The default value of the sketches-report-path input was changed from "size-deltas-reports" to "sketches-reports". If your workflow is relying on this default value it will be necessary to update the name input of the step that uses the actions/upload-artifact action to upload the sketches report to a workflow artifact.

Change:

- uses: actions/upload-artifact@v2
  with:
    path: size-delta-reports

to:

- uses: actions/upload-artifact@v2
  with:
    path: sketches-reports