Skip to content

Commit

Permalink
ci: Upload artifacts for both 32 and 64 bits build
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkaMaul committed Apr 2, 2024
1 parent f10ae08 commit 402a092
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,27 @@ jobs:
- name: Rename Plugin
shell: bash
run:
mv build${{ matrix.ida_sdk }}/quokka-install/quokka_* ${{ matrix.ida_sdk }}-quokka_plugin0064.${{ matrix.ext }}
run: |
mv build${{ matrix.ida_sdk }}/quokka-install/quokka_*64* ${{ matrix.ida_sdk }}-quokka_plugin0064.${{ matrix.ext }}
mv build${{ matrix.ida_sdk }}/quokka-install/quokka_*32* ${{ matrix.ida_sdk }}-quokka_plugin0032.${{ matrix.ext }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
# We need one action per file
# See https://github.com/actions/upload-artifact/issues/331
- name: Upload Artifacts (64)
uses: actions/upload-artifact@v4
with:
name: idaplugin-${{ matrix.os }}-${{ matrix.ida_sdk }}
path: ${{ matrix.ida_sdk }}-quokka_plugin0064.${{ matrix.ext }}
if-no-files-found: error

- name: Upload Artifacts (32)
uses: actions/upload-artifact@v4
with:
name: idaplugin-${{ matrix.os }}-${{ matrix.ida_sdk }}
path: ${{ matrix.ida_sdk }}-quokka_plugin0032.${{ matrix.ext }}
if-no-files-found: error


upload:
name: Upload artifacts for Release
needs: [build]
Expand Down

0 comments on commit 402a092

Please sign in to comment.