Skip to content

Commit

Permalink
CI: modify artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
KangLin committed Feb 21, 2025
1 parent 46d711a commit a161954
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
TOOLS_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_${{matrix.qt_arch}}_${{matrix.BUILD_TYPE}}
RabbitRemoteControl_VERSION: v0.0.32
artifact_name: build_appimage
artifact_name: build_appimage_${{matrix.os}}
qt_modules: 'qtscxml qtmultimedia qtimageformats qtserialport qt5compat'

# Map the job outputs to step outputs
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
if: ${{ matrix.BUILD_TYPE == 'Release' }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.artifact_name }}_${{matrix.os}}
name: ${{ env.artifact_name }}
path: |
${{github.workspace}}/RabbitRemoteControl_${{env.RabbitRemoteControl_VERSION}}_*.AppImage
${{github.workspace}}/update_appimage_${{matrix.qt_arch}}_qt${{matrix.qt_version}}.json
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Download ubuntu
uses: actions/download-artifact@v4
with:
name: ${{ needs.ubuntu.outputs.name }}
name: ${{ needs.ubuntu.outputs.name }}_*
path: ${{ env.artifact_path }}
merge-multiple: true

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Download appimage
uses: actions/download-artifact@v4
with:
name: ${{ needs.appimage.outputs.name }}
name: ${{ needs.appimage.outputs.name }}_*
path: ${{ env.artifact_path }}
merge-multiple: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
TOOLS_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_${{matrix.os}}_${{matrix.BUILD_TYPE}}
RabbitRemoteControl_VERSION: 0.0.32
artifact_name: build_ubuntu
artifact_name: build_ubuntu_${{matrix.os}}

# Map the job outputs to step outputs
outputs:
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
if: ${{ matrix.BUILD_TYPE == 'Release' }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.artifact_name }}_${{matrix.os}}
name: ${{ env.artifact_name }}
path: |
${{github.workspace}}/rabbitremotecontrol_*.deb
${{github.workspace}}/update_ubuntu.json
Expand Down

0 comments on commit a161954

Please sign in to comment.