Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
fix(build): relabel artifacts for pull_request action
Browse files Browse the repository at this point in the history
Required for compat with actions/upload-artifact@v4
  • Loading branch information
msfjarvis committed Dec 15, 2023
1 parent 7201ff0 commit f1969f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
if: "${{ always() }}"
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: Build report
name: Build report (check-codestyle)
path: build/reports/kotlin-build/

unit-tests:
Expand Down Expand Up @@ -91,14 +91,14 @@ jobs:
if: "${{ failure() }}"
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: Test report
name: Test report (unit-tests)
path: app/build/reports

- name: Upload Kotlin build report
if: "${{ always() }}"
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: Build report
name: Build report (unit-tests)
path: build/reports/kotlin-build/

build-apks:
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
if: "${{ always() }}"
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: Build report
name: Build report (build-apks)
path: build/reports/kotlin-build/

check-api:
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
if: "${{ always() }}"
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: Build report
name: Build report (check-api)
path: build/reports/kotlin-build/

lint:
Expand Down Expand Up @@ -191,5 +191,5 @@ jobs:
if: "${{ always() }}"
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: Build report
name: Build report (lint)
path: build/reports/kotlin-build/

0 comments on commit f1969f1

Please sign in to comment.