From 911459f637d7650b873be3fba4bae085436a74fa Mon Sep 17 00:00:00 2001 From: Kaito Udagawa Date: Tue, 28 Oct 2025 21:36:25 +0900 Subject: [PATCH] Disable ubuntu packaging temporarily --- .github/workflows/build-project.yaml | 54 ++++++++++++++-------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/build-project.yaml b/.github/workflows/build-project.yaml index d8b84b59..9385cb13 100644 --- a/.github/workflows/build-project.yaml +++ b/.github/workflows/build-project.yaml @@ -298,37 +298,37 @@ jobs: target: x86_64 config: ${{ needs.check-event.outputs.config }} - - name: Package Plugin 📀 - uses: ./.github/actions/package-plugin - with: - target: x86_64 - config: ${{ needs.check-event.outputs.config }} - package: ${{ fromJSON(needs.check-event.outputs.package) }} + # - name: Package Plugin 📀 + # uses: ./.github/actions/package-plugin + # with: + # target: x86_64 + # config: ${{ needs.check-event.outputs.config }} + # package: ${{ fromJSON(needs.check-event.outputs.package) }} - - name: Upload Source Tarball 🗜️ - uses: actions/upload-artifact@v4 - with: - name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-${{ matrix.os }}-sources-${{ needs.check-event.outputs.commitHash }} - path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-source.* + # - name: Upload Source Tarball 🗜️ + # uses: actions/upload-artifact@v4 + # with: + # name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-${{ matrix.os }}-sources-${{ needs.check-event.outputs.commitHash }} + # path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-source.* - - name: Upload Artifacts 📡 - uses: actions/upload-artifact@v4 - with: - name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-${{ matrix.os }}-x86_64-${{ needs.check-event.outputs.commitHash }} - path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-x86_64*.* + # - name: Upload Artifacts 📡 + # uses: actions/upload-artifact@v4 + # with: + # name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-${{ matrix.os }}-x86_64-${{ needs.check-event.outputs.commitHash }} + # path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-x86_64*.* - - name: Upload debug symbol artifacts 🪲 - uses: actions/upload-artifact@v4 - if: ${{ fromJSON(needs.check-event.outputs.package) }} - with: - name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-${{ matrix.os }}-x86_64-${{ needs.check-event.outputs.commitHash }}-dbgsym - path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-x86_64*-dbgsym.ddeb + # - name: Upload debug symbol artifacts 🪲 + # uses: actions/upload-artifact@v4 + # if: ${{ fromJSON(needs.check-event.outputs.package) }} + # with: + # name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-${{ matrix.os }}-x86_64-${{ needs.check-event.outputs.commitHash }}-dbgsym + # path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-x86_64*-dbgsym.ddeb - - uses: actions/cache/save@v4 - if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true' - with: - path: ${{ github.workspace }}/.ccache - key: ${{ runner.os }}-${{ matrix.os }}-ccache-x86_64-${{ needs.check-event.outputs.config }} + # - uses: actions/cache/save@v4 + # if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true' + # with: + # path: ${{ github.workspace }}/.ccache + # key: ${{ runner.os }}-${{ matrix.os }}-ccache-x86_64-${{ needs.check-event.outputs.config }} windows-build: name: Build for Windows 🪟