From 2d1651553fda3f7abc6cd520f507d34ad08f0de8 Mon Sep 17 00:00:00 2001 From: Matthew Rodusek <7519129+bitwizeshift@users.noreply.github.com> Date: Sat, 16 Dec 2023 14:55:19 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Add=20trigger=20for=20bundle=20w?= =?UTF-8?q?orkflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is to test the workflows. --- .github/workflows/bundle.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bundle.yaml b/.github/workflows/bundle.yaml index 54c1ed3..95a62e5 100644 --- a/.github/workflows/bundle.yaml +++ b/.github/workflows/bundle.yaml @@ -1,5 +1,8 @@ name: Bundle Binaries on: + push: + branches: develop + workflow_run: workflows: [ build ] types: @@ -40,10 +43,10 @@ jobs: - name: Build uses: ./.github/actions/cargo-build with: - profile: ${{ inputs.profile }} + profile: "dev" # ${{ inputs.profile }} - name: Bundle uses: ./.github/actions/cargo-bundle with: - profile: ${{ inputs.profile }} + profile: "dev" # ${{ inputs.profile }} path: example