Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5f9f379

Browse files
committedOct 28, 2020
add upload artifact and various fixes
1 parent 434a104 commit 5f9f379

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
 

‎.github/workflows/release.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,20 @@ jobs:
8282
uses: actions/download-artifact@v2
8383
with:
8484
name: arduino-create-agent-ubuntu-latest
85-
path: arduino-create-agent
85+
path: artifacts/linux-386/
8686

8787
- name: ls test
8888
run: ls -lah
8989

9090
- name: Launch Bitrock installbuilder-20
91-
run: /opt/installbuilder-20.3.0/bin/builder build installer.xml linux --verbose --setvars project.outputDirectory=$PWD project.version=${buildrevision} workspace=$PWD realname=${REALNAME}
91+
run: /opt/installbuilder-20.3.0/bin/builder build installer.xml linux --verbose --license "${{ secrets.INSTALLER_LICENSE }}" --setvars project.outputDirectory=$PWD project.version=${buildrevision} workspace=$PWD realname=${REALNAME}
9292

93+
- name: Upload artifacts
94+
uses: actions/upload-artifact@v2
95+
with:
96+
name: ArduinoCreateAgent
97+
path: ArduinoCreateAgent*
98+
if-no-files-found: error
9399

94100
# - name: Send unit tests coverage to Codecov
95101
# if: >

0 commit comments

Comments
 (0)
Please sign in to comment.