Skip to content

Commit

Permalink
[CI] Give names to artifact steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Sep 2, 2024
1 parent 7f19934 commit 84d7225
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,25 +70,29 @@ jobs:

- run: ./gradlew lintRelease publishToMavenLocal

- uses: actions/upload-artifact@v4
- name: Artifact library-lint-report
uses: actions/upload-artifact@v4
with:
name: library-lint-report
path: wvWare/build/reports/lint-results-release.html
if-no-files-found: error

- uses: actions/upload-artifact@v4
- name: Artifact maven-local
uses: actions/upload-artifact@v4
with:
name: maven-local
path: ~/.m2
if-no-files-found: error

- uses: actions/upload-artifact@v4
- name: Artifact conangraph.html
uses: actions/upload-artifact@v4
with:
name: conangraph.html
path: conangraph.html
if-no-files-found: error

- uses: actions/upload-artifact@v4
- name: Artifact dotconan2
uses: actions/upload-artifact@v4
with:
name: dotconan2
path: ~/.conan2
Expand Down

0 comments on commit 84d7225

Please sign in to comment.