Skip to content

Commit ddc4d8f

Browse files
committed
Fix upload names
1 parent 565ffcf commit ddc4d8f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
uses: actions/upload-artifact@v4
9393
if: (success() || failure()) && runner.debug == '1'
9494
with:
95-
name: ${{ matrix.os }}-compilation-report
95+
name: ${{ matrix.os }}${{ matrix.debug == 1 && '-debug' || '' }}-compilation-report
9696
path: compilation-report.xml
9797
if-no-files-found: warn
9898
- name: Move .ccache
@@ -105,7 +105,7 @@ jobs:
105105
if: matrix.os != 'windows-latest'
106106
uses: actions/upload-artifact@v4
107107
with:
108-
name: ${{ matrix.os }}
108+
name: ${{ matrix.os }}${{ matrix.debug == 1 && '-debug' || '' }}
109109
path: dist/codexctl
110110
if-no-files-found: error
111111
- name: Upload executable
@@ -175,7 +175,7 @@ jobs:
175175
uses: actions/upload-artifact@v4
176176
if: runner.debug == '1'
177177
with:
178-
name: remarkable-compilation-report
178+
name: remarkable${{ matrix.debug == 1 && '-debug' || '' }}-compilation-report
179179
path: compilation-report.xml
180180
if-no-files-found: warn
181181
- name: Upload executable

0 commit comments

Comments
 (0)