Skip to content

Commit

Permalink
Update artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
acidicMercury8 committed Jan 27, 2024
1 parent 0b019e0 commit a7b3640
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 32 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-hasher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ defaults:
shell: pwsh

jobs:
build-hasher-cli:
name: 'Build hasher CLI'
build-hasher:
name: 'Build hasher'

strategy:
matrix:
Expand Down Expand Up @@ -69,13 +69,13 @@ jobs:
- name: Upload hasher
uses: actions/upload-artifact@v4
with:
name: hasher-cli-${{ matrix.framework }}-${{ matrix.config }}-${{ github.sha }}
name: hasher-${{ matrix.framework }}-${{ matrix.config }}-${{ github.sha }}
path: bin/${{ matrix.config }}/

publish-hasher-cli:
name: 'Publish hasher CLI'
publish-hasher:
name: 'Publish hasher'

needs: build-hasher-cli
needs: build-hasher

strategy:
matrix:
Expand Down Expand Up @@ -120,5 +120,5 @@ jobs:
- name: Upload hasher
uses: actions/upload-artifact@v4
with:
name: hasher-cli-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
name: hasher-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
path: bin/${{ matrix.config }}/${{ matrix.runtime }}/publish/
36 changes: 18 additions & 18 deletions .github/workflows/build-launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ defaults:
shell: pwsh

jobs:
build-launcher-avalonia:
name: 'Build launcher Avalonia'
build-launcher:
name: 'Build launcher'

strategy:
matrix:
Expand Down Expand Up @@ -69,11 +69,11 @@ jobs:
- name: Upload launcher
uses: actions/upload-artifact@v4
with:
name: launcher-avalonia-${{ matrix.framework }}-${{ matrix.config }}-${{ github.sha }}
name: launcher-${{ matrix.framework }}-${{ matrix.config }}-${{ github.sha }}
path: bin/${{ matrix.config }}/

build-updater-cli:
name: 'Build updater CLI'
build-updater:
name: 'Build updater'

strategy:
matrix:
Expand Down Expand Up @@ -114,13 +114,13 @@ jobs:
- name: Upload updater
uses: actions/upload-artifact@v4
with:
name: updater-cli-${{ matrix.framework }}-${{ matrix.config }}-${{ github.sha }}
name: updater-${{ matrix.framework }}-${{ matrix.config }}-${{ github.sha }}
path: bin/${{ matrix.config }}/

publish-launcher-avalonia:
name: 'Publish launcher Avalonia'
publish-launcher:
name: 'Publish launcher'

needs: build-launcher-avalonia
needs: build-launcher

strategy:
matrix:
Expand Down Expand Up @@ -165,13 +165,13 @@ jobs:
- name: Upload launcher
uses: actions/upload-artifact@v4
with:
name: launcher-avalonia-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
name: launcher-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
path: bin/${{ matrix.config }}/${{ matrix.runtime }}/publish/

publish-updater-cli:
name: 'Publish updater CLI'
publish-updater:
name: 'Publish updater'

needs: build-updater-cli
needs: build-updater

strategy:
matrix:
Expand Down Expand Up @@ -216,15 +216,15 @@ jobs:
- name: Upload updater
uses: actions/upload-artifact@v4
with:
name: updater-cli-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
name: updater-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
path: bin/${{ matrix.config }}/${{ matrix.runtime }}/publish/

pack-installer:
name: 'Pack installer'

needs:
- publish-launcher-avalonia
- publish-updater-cli
- publish-launcher
- publish-updater

strategy:
matrix:
Expand All @@ -248,13 +248,13 @@ jobs:
- name: Get launcher
uses: actions/download-artifact@v4
with:
name: launcher-avalonia-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
name: launcher-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
path: bin/${{ matrix.config }}/${{ matrix.runtime }}/publish/

- name: Get updater
uses: actions/download-artifact@v4
with:
name: updater-cli-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
name: updater-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
path: bin/${{ matrix.config }}/${{ matrix.runtime }}/publish/

- name: Publish installer
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build-legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ defaults:
shell: pwsh

jobs:
build-launcher-wpf:
name: 'Build launcher WPF'
build-launcher:
name: 'Build launcher'

strategy:
matrix:
Expand Down Expand Up @@ -69,13 +69,13 @@ jobs:
- name: Upload launcher
uses: actions/upload-artifact@v4
with:
name: launcher-wpf-${{ matrix.framework }}-${{ matrix.config }}-${{ github.sha }}
name: launcher-${{ matrix.framework }}-${{ matrix.config }}-${{ github.sha }}
path: bin/${{ matrix.config }}/

publish-launcher-wpf:
name: 'Publish launcher WPF'
publish-launcher:
name: 'Publish launcher'

needs: build-launcher-wpf
needs: build-launcher

strategy:
matrix:
Expand Down Expand Up @@ -120,5 +120,5 @@ jobs:
- name: Upload launcher
uses: actions/upload-artifact@v4
with:
name: launcher-wpf-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
name: launcher-${{ matrix.framework }}-${{ matrix.runtime }}-${{ github.sha }}
path: bin/${{ matrix.config }}/${{ matrix.runtime }}/publish/

0 comments on commit a7b3640

Please sign in to comment.