Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
QueenOfSquiggles authored Apr 7, 2024
1 parent 58c74f5 commit 21fa056
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

permissions:
contents: write
Expand Down Expand Up @@ -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
./squiggles_core_release.zip

0 comments on commit 21fa056

Please sign in to comment.