Skip to content

Commit

Permalink
fix upload names
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Aug 19, 2024
1 parent 7da7162 commit fc6b8b1
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.user.name }}
name: cxx-${{ matrix.os }}-${{ matrix.user.name }}
path: 'buildout/testlogs/*'

integration:
Expand All @@ -57,16 +57,12 @@ jobs:
integration:
- name: 'Apache 2'
label: 'apache2'
dir: 'APACHE2'
- name: 'Nginx dynamic module'
label: 'nginx-dynamic'
dir: 'NGINX_DYNAMIC'
- name: 'Nginx'
label: 'nginx'
dir: 'NGINX'
- name: 'Standalone'
label: 'standalone'
dir: 'STANDALONE'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -93,7 +89,7 @@ jobs:
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
name: ${{ matrix.integration.label }}-${{ matrix.os }}
path: 'buildout/testlogs/*'

language:
Expand All @@ -104,10 +100,8 @@ jobs:
lang:
- name: 'Node.js'
label: 'nodejs'
dir: 'NODEJS'
- name: 'Ruby'
label: 'ruby'
dir: 'RUBY'
os:
- macos-latest
- ubuntu-latest
Expand All @@ -128,7 +122,7 @@ jobs:
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
name: ${{ matrix.lang.label }}-${{ matrix.os }}
path: 'buildout/testlogs/*'

homebrew_packaging:
Expand All @@ -145,7 +139,7 @@ jobs:
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
name: homebrew-${{ matrix.os }}
path: 'buildout/testlogs/*'

source_packaging:
Expand All @@ -164,5 +158,5 @@ jobs:
- run: ls -R buildout
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
name: source-packaging-${{ matrix.os }}
path: 'buildout/testlogs/*'

0 comments on commit fc6b8b1

Please sign in to comment.