Skip to content

Commit

Permalink
🐞 fix: Fix incorrect path for console workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
caoccao committed Oct 16, 2024
1 parent 7b04495 commit 0b03229
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/console_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,18 @@ jobs:
uses: edgarrc/action-7z@v1
if: matrix.name == 'Linux x86_64'
with:
args: 7z d build/libs/*.jar ${{ matrix.zip_exclude_files }}
args: 7z d console/build/libs/*.jar ${{ matrix.zip_exclude_files }}

- name: Remove Binary Files for MacOS
if: matrix.name == 'MacOS x86_64' || matrix.name == 'MacOS arm64'
run: |
7z d build/libs/*.jar ${{ matrix.zip_exclude_files }}
7z d console/build/libs/*.jar ${{ matrix.zip_exclude_files }}
- name: Remove Binary Files for Windows
if: matrix.name == 'Windows x86_64'
shell: bash
run: |
7z d build/libs/*.jar ${{ matrix.zip_exclude_files }}
7z d console/build/libs/*.jar ${{ matrix.zip_exclude_files }}
- name: Upload the Artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 0b03229

Please sign in to comment.