Skip to content

Commit 27f4603

Browse files
committed
fix "Unable to find an artifact with the name: ArduinoCreateAgent-*"
1 parent 8ac92b3 commit 27f4603

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -332,10 +332,7 @@ jobs:
332332
steps:
333333

334334
- name: Download artifact
335-
uses: actions/download-artifact@v2
336-
with:
337-
name: ArduinoCreateAgent-* # download all the archives containing installers
338-
path: ArduinoCreateAgent
335+
uses: actions/download-artifact@v2 # download all the artifacts
339336

340337
# - name: Read CHANGELOG
341338
# id: changelog
@@ -371,7 +368,7 @@ jobs:
371368
repo_token: ${{ secrets.GITHUB_TOKEN }}
372369
tag: ${{ github.ref }}
373370
file_glob: true # If set to true, the file argument can be a glob pattern
374-
file: ArduinoCreateAgent/*
371+
file: ArduinoCreateAgent*
375372

376373
# - name: Upload release files on Arduino downloads servers
377374
# uses: docker://plugins/s3

0 commit comments

Comments
 (0)