Skip to content

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
Fix conflicting artifact names.
  • Loading branch information
martincostello committed Dec 14, 2023
1 parent fe9441f commit 206b23f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:
matrix:
include:
- os: macos-latest
codecov_os: macos
os-name: macos
- os: ubuntu-latest
codecov_os: linux
os-name: linux
- os: windows-latest
codecov_os: windows
os-name: windows

steps:

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
name: Upload coverage to Codecov
with:
file: ./artifacts/coverage/coverage.cobertura.xml
flags: ${{ matrix.codecov_os }}
flags: ${{ matrix.os-name }}

- name: Publish artifacts
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
Expand All @@ -112,23 +112,23 @@ jobs:
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: screenshots
name: screenshots-${{ matrix.os-name }}
path: ./artifacts/screenshots/*
if-no-files-found: ignore

- name: Publish traces
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: traces
name: traces-${{ matrix.os-name }}
path: ./artifacts/traces/*
if-no-files-found: ignore

- name: Publish videos
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: videos
name: videos-${{ matrix.os-name }}
path: ./artifacts/videos/*
if-no-files-found: ignore

Expand Down Expand Up @@ -212,23 +212,23 @@ jobs:
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: screenshots
name: screenshots-e2e-dev
path: ./artifacts/screenshots/*
if-no-files-found: ignore

- name: Publish traces
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: traces
name: traces-e2e-dev
path: ./artifacts/traces/*
if-no-files-found: ignore

- name: Publish videos
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: videos
name: videos-e2e-dev
path: ./artifacts/videos/*
if-no-files-found: ignore

Expand Down Expand Up @@ -310,22 +310,22 @@ jobs:
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: screenshots
name: screenshots-e2e-production
path: ./artifacts/screenshots/*
if-no-files-found: ignore

- name: Publish traces
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: traces
name: traces-e2e-production
path: ./artifacts/traces/*
if-no-files-found: ignore

- name: Publish videos
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: ${{ !cancelled() }}
with:
name: videos
name: videos-e2e-production
path: ./artifacts/videos/*
if-no-files-found: ignore

0 comments on commit 206b23f

Please sign in to comment.