Skip to content

Commit

Permalink
cicd: Uploading repos artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Mar 19, 2024
1 parent 43bbc48 commit aa0af73
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 8 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,19 @@ jobs:
uses: actions/download-artifact@v4
with:
name: artifacts
path: plugins

path: plugins/riot/build

- name: Download repos
uses: actions/download-artifact@v4
with:
name: repos
path: build/repos/local/release

- name: Download docs
uses: actions/download-artifact@v4
with:
name: docs
path: docs
path: docs/guide/build/guide

- name: Download jlink
uses: actions/download-artifact@v4
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,19 @@ jobs:
uses: actions/download-artifact@v4
with:
name: artifacts
path: plugins

path: plugins/riot/build

- name: Download repos
uses: actions/download-artifact@v4
with:
name: repos
path: build/repos/local/release

- name: Download docs
uses: actions/download-artifact@v4
with:
name: docs
path: docs
path: docs/guide/build/guide

- name: Download jlink
uses: actions/download-artifact@v4
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/step-jlink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ jobs:
- name: Dependencies
run: |
ls -l plugins/riot/build/dependencies/flat
- name: Upload repos
uses: actions/upload-artifact@v4
with:
retention-days: 1
name: repos
path: |
build/repos/local/release
- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand All @@ -86,7 +94,6 @@ jobs:
plugins/riot/build/libs/
plugins/riot/build/dependencies/
plugins/riot/build/distributions/
plugins/LICENSE
- name: Upload docs
uses: actions/upload-artifact@v4
Expand All @@ -95,7 +102,6 @@ jobs:
name: docs
path: |
docs/guide/build/guide/
docs/LICENSE
- name: Stop Gradle daemon
shell: bash
Expand Down

0 comments on commit aa0af73

Please sign in to comment.