diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f602f87..6f707929 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,8 +1,6 @@ on: workflow_dispatch: push: - branches: - - '*' branches-ignore: - 'master' - 'docs' @@ -25,7 +23,7 @@ jobs: - name: Run script run: ci/ci_ubuntu.sh - name: Upload - if: ${{ startsWith(github.ref, 'refs/tags/') }} + # if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: actions/upload-artifact@v3 with: name: vst_ubuntu @@ -41,7 +39,7 @@ jobs: - name: Run script run: ci/ci_windows.ps1 - name: Upload - if: ${{ startsWith(github.ref, 'refs/tags/') }} + # if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: actions/upload-artifact@v3 with: name: vst_windows @@ -57,7 +55,7 @@ jobs: - name: Run script run: ci/ci_macOS.sh - name: Upload - if: ${{ startsWith(github.ref, 'refs/tags/') }} + # if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: actions/upload-artifact@v3 with: name: vst_macOS @@ -66,7 +64,7 @@ jobs: release-packaging: needs: [build-ubuntu, build-windows, build-macOS] runs-on: ubuntu-latest - if: ${{ startsWith(github.ref, 'refs/tags/UhhyouPlugins') }} + # if: ${{ startsWith(github.ref, 'refs/tags/UhhyouPlugins') }} steps: - name: Checkout uses: actions/checkout@v3 @@ -85,15 +83,20 @@ jobs: python3 pack.py echo "Run studiorack.py" python3 studiorack.py - - name: Get Release Notes - run: 'echo "$(git tag -l --format="%(contents:body)" $GITHUB_REF_NAME)" > RELEASE_NOTES' - - name: Release - uses: softprops/action-gh-release@v1 + - name: Upload + uses: actions/upload-artifact@v3 with: - body_path: RELEASE_NOTES - files: | - ${{ env.package_path }}/pack_macOS/*.zip - ${{ env.package_path }}/pack/*.zip - ${{ env.package_path }}/pack/*.png - ${{ env.package_path }}/pack/plugins.json - ${{ env.package_path }}/audiosample/*.flac + name: vst_full + path: ${{ env.package_path }} + # - name: Get Release Notes + # run: 'echo "$(git tag -l --format="%(contents:body)" $GITHUB_REF_NAME)" > RELEASE_NOTES' + # - name: Release + # uses: softprops/action-gh-release@v1 + # with: + # body_path: RELEASE_NOTES + # files: | + # ${{ env.package_path }}/pack_macOS/*.zip + # ${{ env.package_path }}/pack/*.zip + # ${{ env.package_path }}/pack/*.png + # ${{ env.package_path }}/pack/plugins.json + # ${{ env.package_path }}/audiosample/*.flac