Skip to content

Commit

Permalink
- Add suffix back
Browse files Browse the repository at this point in the history
- Update docker action with new build artifact name
  • Loading branch information
KoalaBear84 committed Dec 1, 2024
1 parent 6b0bccb commit 1f84a2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ 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
Expand All @@ -99,7 +99,7 @@ jobs:
- 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
overwrite: true
Expand Down Expand Up @@ -158,9 +158,9 @@ jobs:
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT

- name: Download artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: ${{ matrix.target }}
name: build-artifact-${{ matrix.target }}${{ matrix.suffix }}

- name: Decompress artifact
uses: TonyBogdanov/[email protected]
Expand Down

0 comments on commit 1f84a2b

Please sign in to comment.