From 21fa0568d2a3230f58e0458a0f5ebf1de2a89b22 Mon Sep 17 00:00:00 2001 From: QueenOfSquiggles <8940604+QueenOfSquiggles@users.noreply.github.com> Date: Sun, 7 Apr 2024 06:48:49 -0500 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c9efbd6..7fde5cd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,6 +4,7 @@ on: push: tags: - "[0-9]+.[0-9]+.[0-9]+" + workflow_dispatch: permissions: contents: write @@ -45,19 +46,26 @@ jobs: # Make Rust compile to our target (defined in the matrix) targets: $\{\{ matrix.target \}\} - - name: Build + - name: Build Release uses: actions-rs/cargo@v1 with: use-cross: true command: build args: --verbose --release --target $\{\{ matrix.target \}\} + - name: Build Debug + uses: actions-rs/cargo@v1 + with: + use-cross: true + command: build + args: --verbose --target $\{\{ matrix.target \}\} + - name: Build archive shell: bash - run: ./build_release.sh + run: echo "Theoretically done constructing?" - name: Release uses: softprops/action-gh-release@v1 with: files: | - ./squiggles_core_release.zip \ No newline at end of file + ./squiggles_core_release.zip