diff --git a/.github/workflows/build-simpleplugin-qmake.yml b/.github/workflows/build-simpleplugin-qmake.yml index 6b49b32..262d13a 100644 --- a/.github/workflows/build-simpleplugin-qmake.yml +++ b/.github/workflows/build-simpleplugin-qmake.yml @@ -90,7 +90,7 @@ jobs: if: matrix.platform == 'windows-latest' uses: actions/upload-artifact@master with: - name: ${{ steps.get_name.outputs.NAME }}-${{ github.sha }}.Windows-${{ matrix.arch }}.qt${{ matrix.qt_version }}.dll + name: ${{ steps.get_name.outputs.NAME }}-${{ github.sha }}.Windows-${{ matrix.arch }}.qt${{ matrix.qt_version }}-qmake.dll path: build/Release/${{ steps.get_name.outputs.NAME }}.dll - name: Win-${{ matrix.arch }} - ${{ matrix.qt_version }} - Upload binaries to release uses: svenstaro/upload-release-action@v1-release @@ -98,7 +98,7 @@ jobs: with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: build/Release/${{ steps.get_name.outputs.NAME }}.dll - asset_name: ${{ steps.get_name.outputs.NAME }}.${{ steps.get_version.outputs.VERSION }}.Windows-${{ matrix.arch }}.dll + asset_name: ${{ steps.get_name.outputs.NAME }}.${{ steps.get_version.outputs.VERSION }}.Windows-${{ matrix.arch }}-qmake.dll tag: ${{ github.ref }} overwrite: true # -------------------------------------------------------- @@ -106,15 +106,15 @@ jobs: if: matrix.platform == 'macos-latest' uses: actions/upload-artifact@master with: - name: ${{ steps.get_name.outputs.NAME }}-${{ github.sha }}.macOS-${{ matrix.arch }}.qt${{ matrix.qt_version }}.so - path: build/lib${{ steps.get_name.outputs.NAME }}.so + name: ${{ steps.get_name.outputs.NAME }}-${{ github.sha }}.macOS-${{ matrix.arch }}.qt${{ matrix.qt_version }}-qmake.dylib + path: build/lib${{ steps.get_name.outputs.NAME }}.dylib - name: macOS - ${{ matrix.qt_version }} - Upload binaries to release uses: svenstaro/upload-release-action@v1-release if: github.event_name == 'release' && matrix.platform == 'macos-latest' with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: build/lib${{ steps.get_name.outputs.NAME }}.so - asset_name: ${{ steps.get_name.outputs.NAME }}.${{ steps.get_version.outputs.VERSION }}.macOS-${{ matrix.arch }}.so + file: build/lib${{ steps.get_name.outputs.NAME }}.dylib + asset_name: ${{ steps.get_name.outputs.NAME }}.${{ steps.get_version.outputs.VERSION }}.macOS-${{ matrix.arch }}-qmake.dylib tag: ${{ github.ref }} overwrite: true # -------------------------------------------------------- @@ -122,7 +122,7 @@ jobs: if: matrix.platform == 'ubuntu-16.04' uses: actions/upload-artifact@master with: - name: ${{ steps.get_name.outputs.NAME }}-${{ github.sha }}.linux-${{ matrix.arch }}.qt${{ matrix.qt_version }}.so + name: ${{ steps.get_name.outputs.NAME }}-${{ github.sha }}.linux-${{ matrix.arch }}.qt${{ matrix.qt_version }}-qmake.so path: build/lib${{ steps.get_name.outputs.NAME }}.so - name: Linux - ${{ matrix.qt_version }} - Upload binaries to release uses: svenstaro/upload-release-action@v1-release @@ -130,6 +130,6 @@ jobs: with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: build/lib${{ steps.get_name.outputs.NAME }}.so - asset_name: ${{ steps.get_name.outputs.NAME }}.${{ steps.get_version.outputs.VERSION }}.linux-${{ matrix.arch }}.so + asset_name: ${{ steps.get_name.outputs.NAME }}.${{ steps.get_version.outputs.VERSION }}.linux-${{ matrix.arch }}-qmake.so tag: ${{ github.ref }} overwrite: true