Skip to content

Commit

Permalink
- Add suffix to artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaBear84 committed Dec 1, 2024
1 parent 1f3335f commit fe1c53a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ jobs:
if: ${{ matrix.os == 'ubuntu-latest' && matrix.self-contained == 'normal' }}
uses: actions/upload-artifact@v4
with:
name: build-artifact-${{ matrix.target }}
name: build-artifact-${{ matrix.target }}${{ matrix.suffix }}
path: |
OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip
src/Dockerfile
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifact-${{ matrix.target }}
name: build-artifact-${{ matrix.target }}${{ matrix.suffix }}
path: |
OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip
Expand All @@ -109,7 +109,7 @@ jobs:

steps:
- name: Download Artifacts
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
path: build-artifact
pattern: build-artifact-*
Expand Down

0 comments on commit fe1c53a

Please sign in to comment.