Skip to content

Commit 1f84a2b

Browse files
committed
- Add suffix back
- Update docker action with new build artifact name
1 parent 6b0bccb commit 1f84a2b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
if: ${{ matrix.os == 'ubuntu-latest' && matrix.self-contained == 'normal' }}
9191
uses: actions/upload-artifact@v4
9292
with:
93-
name: build-artifact-${{ matrix.target }}
93+
name: build-artifact-${{ matrix.target }}${{ matrix.suffix }}
9494
path: |
9595
OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip
9696
src/Dockerfile
@@ -99,7 +99,7 @@ jobs:
9999
- name: Upload artifacts
100100
uses: actions/upload-artifact@v4
101101
with:
102-
name: build-artifact-${{ matrix.target }}
102+
name: build-artifact-${{ matrix.target }}${{ matrix.suffix }}
103103
path: |
104104
OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip
105105
overwrite: true
@@ -158,9 +158,9 @@ jobs:
158158
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
159159

160160
- name: Download artifact
161-
uses: actions/download-artifact@v4.1.7
161+
uses: actions/download-artifact@v4
162162
with:
163-
name: ${{ matrix.target }}
163+
name: build-artifact-${{ matrix.target }}${{ matrix.suffix }}
164164

165165
- name: Decompress artifact
166166
uses: TonyBogdanov/[email protected]

0 commit comments

Comments
 (0)